From 9ca3ac9383b8e596ad9ccd6b2abcff9d62aa5acb Mon Sep 17 00:00:00 2001 From: Ombridride Date: Tue, 28 Jul 2015 23:14:15 +0200 Subject: [PATCH] Reduce the Warrior life regeneration --- mods/hbhunger/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/hbhunger/init.lua b/mods/hbhunger/init.lua index 1fa841c1..f4745307 100755 --- a/mods/hbhunger/init.lua +++ b/mods/hbhunger/init.lua @@ -111,9 +111,9 @@ minetest.register_globalstep(function(dtime) local timerquot = 1 -- By default regen 0.5 hearth every 10sec if pclasses.api.get_player_class(name) == "warrior" then - timerquot = 2 -- Black_Mithril armor = 0.5 hearth every 5.0sec + timerquot = 1.42 -- Black_Mithril armor = 0.5 hearth every 7.0sec elseif pclasses.api.util.does_wear_full_armor(name, "mithril", false) then - timerquot = 1.33 -- Mithril armor = 0.5 hearth every 7.5sec + timerquot = 1.17 -- Mithril armor = 0.5 hearth every 8.5sec end