summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 8e9597c..e7fd6b3 100644
--- a/init.lua
+++ b/init.lua
@@ -161,7 +161,7 @@ minetest.after(2.5, function()
if HUD_ENABLE_HUNGER and timer > 4 then
if h>=16 then
player:set_hp(player:get_hp()+1)
- elseif h==1 and minetest.setting_getbool("enable_damage") then
+ elseif h<=1 and minetest.setting_getbool("enable_damage") then
if player:get_hp()-1 >= 1 then player:set_hp(player:get_hp()-1) end
end
end