mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-25 20:11:06 +01:00
Correct drowning damage
This commit is contained in:
parent
b4c658904b
commit
b2d634acb8
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ minetest.register_on_player_hpchange(function(player, hp_change)
|
|||
|
||||
if is_fire_node[player_info.node_head] or is_fire_node[player_info.node_feet] or is_fire_node[player_info.node_stand] then
|
||||
if player:get_breath() == 0 and hp_change == -4 then -- probably drowning
|
||||
return -1
|
||||
return hp_change
|
||||
else
|
||||
return 0
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue