mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-01-13 20:17:36 +01:00
Correct super zombie.
This commit is contained in:
parent
4b23c2a15c
commit
58cde1c9e9
@ -41,7 +41,11 @@ end
|
|||||||
function mcl_potions.healing_func(player, hp)
|
function mcl_potions.healing_func(player, hp)
|
||||||
|
|
||||||
if is_zombie[player:get_entity_name()] then hp = -hp end
|
if is_zombie[player:get_entity_name()] then hp = -hp end
|
||||||
|
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)
|
player:set_hp(player:get_hp() + hp)
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user