diff --git a/mods/ITEMS/mcl_potions/functions.lua b/mods/ITEMS/mcl_potions/functions.lua index a2e7befc..45900c4d 100644 --- a/mods/ITEMS/mcl_potions/functions.lua +++ b/mods/ITEMS/mcl_potions/functions.lua @@ -314,7 +314,7 @@ function mcl_potions.healing_func(player, hp) if hp > 0 then player:set_hp(math.min(player:get_hp() + hp, player:get_properties().hp_max)) else - player:set_hp(math.max(player:get_hp() + hp, 1)) + player:set_hp(player:get_hp() + hp) end end