From 80ba7db8ba91d12c274a31eca8778338a120b8b5 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Sat, 18 Jun 2016 09:42:24 +0100 Subject: [PATCH] lower health display timer --- api.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api.lua b/api.lua index e6e954c..7c80664 100644 --- a/api.lua +++ b/api.lua @@ -310,9 +310,10 @@ function check_for_death(self) -- backup nametag so we can show health stats if not self.nametag2 then self.nametag2 = self.nametag or "" - self.htimer = 5 end + self.htimer = 2 + self.nametag = "health: " .. self.health .. " of " .. self.hp_max update_tag(self) @@ -430,7 +431,10 @@ do_env_damage = function(self) -- reset nametag after showing health stats if self.htimer < 1 and self.nametag2 then + self.nametag = self.nametag2 + self.nametag2 = nil + update_tag(self) end