meteor-client icon indicating copy to clipboard operation
meteor-client copied to clipboard

Nametags Health render bug

Open ForeverArimuraromi opened this issue 1 month ago • 3 comments

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).

ForeverArimuraromi avatar Dec 02 '25 04:12 ForeverArimuraromi

Solved by using this if(scoreboard!=null){ healthmodule = scoreboard.getNullableObjective("HEALTH_MODULE_LIST"); } if(healthmodule != null){ health2 = Objects.requireNonNull(scoreboard.getScore(player, healthmodule)).getScore(); }

ForeverArimuraromi avatar Dec 02 '25 08:12 ForeverArimuraromi

Why are you playing on hoplite with motor client 😡

Marccccccccccccccc avatar Dec 04 '25 14:12 Marccccccccccccccc

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

elijah-yum avatar Dec 08 '25 05:12 elijah-yum