Nametags Health render bug
Describe the bug
in hoplite,the nametag cant read players'health correctly maybe should try get health from tablist
Steps to reproduce
enabled nametags
Meteor Version
newest
Minecraft Version
1.21.10
Operating System
Windows
Before submitting a bug report
-
[x] This bug wasn't already reported (I have searched bug reports on GitHub).
-
[x] This is a valid bug (I am able to reproduce this on the latest dev build).
Solved by using this if(scoreboard!=null){ healthmodule = scoreboard.getNullableObjective("HEALTH_MODULE_LIST"); } if(healthmodule != null){ health2 = Objects.requireNonNull(scoreboard.getScore(player, healthmodule)).getScore(); }
Why are you playing on hoplite with motor client 😡
Solved by using this if(scoreboard!=null){ healthmodule = scoreboard.getNullableObjective("HEALTH_MODULE_LIST"); } if(healthmodule != null){ health2 = Objects.requireNonNull(scoreboard.getScore(player, healthmodule)).getScore(); }
goofy ahh snippet