add damage_per_second nil check

This commit is contained in:
tenplus1 2023-06-13 07:58:17 +01:00
parent cf18cd43de
commit e32d87c70d
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ local use_cmi = minetest.global_exists("cmi")
mobs = {
mod = "redo",
version = "20230609",
version = "20230613",
intllib = S,
invis = minetest.global_exists("invisibility") and invisibility or {}
}
@ -1141,7 +1141,7 @@ function mob_class:do_env_damage()
end
-- damage_per_second node check (not fire and lava)
elseif nodef.damage_per_second ~= 0
elseif nodef.damage_per_second and nodef.damage_per_second ~= 0
and nodef.groups.lava == nil and nodef.groups.fire == nil then
self.health = self.health - nodef.damage_per_second