diff --git a/ReallifeGamemode.Client/Gui/nametags.ts b/ReallifeGamemode.Client/Gui/nametags.ts index 64940b9b..47ff9933 100644 --- a/ReallifeGamemode.Client/Gui/nametags.ts +++ b/ReallifeGamemode.Client/Gui/nametags.ts @@ -20,7 +20,7 @@ export default function customNametags() { let scale = distance / maxDistance; if (scale < 0.6) scale = 0.6; - var health = player.getHealth(); + var health = player.getHealth() / 100; //health = health < 100 ? 0 : (health - 100) / 100; var armour = player.getArmour() / 100;