mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Fix mobs taking damage from fire and lava even if they shouldn't
This commit is contained in:
parent
f68a75f184
commit
b616ce734f
1 changed files with 1 additions and 1 deletions
|
@ -1148,7 +1148,7 @@ local do_env_damage = function(self)
|
|||
end
|
||||
|
||||
-- damage_per_second node check
|
||||
elseif nodef.damage_per_second ~= 0 then
|
||||
elseif nodef.damage_per_second ~= 0 and not nodef.groups.lava and not nodef.groups.fire then
|
||||
|
||||
self.health = self.health - nodef.damage_per_second
|
||||
|
||||
|
|
Loading…
Reference in a new issue