Correct super zombie.

This commit is contained in:
Brandon 2020-06-18 17:17:56 -04:00
parent 4b23c2a15c
commit 58cde1c9e9
1 changed files with 6 additions and 2 deletions

View File

@ -39,9 +39,13 @@ for i, zombie in ipairs({"husk","zombie","pigman"}) do
end
function mcl_potions.healing_func(player, hp)
if is_zombie[player:get_entity_name()] then hp = -hp end
player:set_hp(player:get_hp() + hp)
if hp > 0 then
player:set_hp(math.min(player:get_hp() + hp, player:get_properties().hp_max))
else
player:set_hp(player:get_hp() + hp)
end
end