mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
Fix #1548
This commit is contained in:
parent
99bb492147
commit
eb80cceb8d
1 changed files with 4 additions and 0 deletions
|
@ -701,6 +701,10 @@ function mcl_potions.healing_func(player, hp)
|
||||||
|
|
||||||
local obj = player:get_luaentity()
|
local obj = player:get_luaentity()
|
||||||
|
|
||||||
|
if player:get_hp() == 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if obj and obj.harmed_by_heal then hp = -hp end
|
if obj and obj.harmed_by_heal then hp = -hp end
|
||||||
|
|
||||||
if hp > 0 then
|
if hp > 0 then
|
||||||
|
|
Loading…
Reference in a new issue