Update wallhack text for *DEAD* living entity

This commit is contained in:
noil 2019-11-06 21:14:06 -05:00
parent e6bf154064
commit 35137ce34a
1 changed files with 5 additions and 1 deletions

View File

@ -161,7 +161,11 @@ public final class WallHackModule extends Module {
if (this.hearts.getBoolean()) {
final float hearts = entityLiving.getHealth() / 2.0f;
heartsFormatted = (Math.floor(hearts) == hearts ? (int) hearts : String.format("%.1f", hearts)) + "";
if (hearts <= 0)
heartsFormatted = "*DEAD*";
else
heartsFormatted = (Math.floor(hearts) == hearts ? (int) hearts : String.format("%.1f", hearts)) + "";
float startX = -mc.fontRenderer.getStringWidth(heartsFormatted) / 2.0f;
if (this.name.getBoolean())