Fix Zalcano damage overlay to only show during Zalcano

This varp is for the hp hud, and applies to more content than just
Zalcano, so verify that the hp hud is for Zalcano
This commit is contained in:
Adam
2021-01-05 14:50:52 -05:00
parent 901f241333
commit c5a52754e0
2 changed files with 4 additions and 5 deletions

View File

@@ -188,11 +188,9 @@ public enum VarPlayer
MOUSE_BUTTONS(170),
/**
* Zalcano's form
* -1 : Player is outside or Zalcano is dead i.e. there's no healthbar to show
* Anything else : The {@link NpcID} of the current form
* {@link NpcID} for the HP HUD
*/
ZALCANO_FORM(1683);
HP_HUD_NPC_ID(1683);
private final int id;
}