mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix zombies sometimes just disappearing when dieing to fire
This commit is contained in:
parent
cfa6937df4
commit
f86cf37ac9
1 changed files with 2 additions and 1 deletions
|
@ -106,9 +106,10 @@ function mcl_burning.damage(obj)
|
|||
damage = 1
|
||||
end
|
||||
local new_hp = hp - damage
|
||||
obj:set_hp(new_hp)
|
||||
if health then
|
||||
luaentity.health = new_hp
|
||||
else
|
||||
obj:set_hp(new_hp)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue