From d0ac1d73773b78fb4f5ea03655f99e4fbc1a7053 Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Fri, 1 May 2020 11:52:03 +0200 Subject: [PATCH] magma damages mobs --- mods/ENTITIES/mcl_mobs/api.lua | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index 63a114e6..3cae6670 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -311,7 +311,7 @@ local is_node_dangerous = function(self, nodename) end end if self.fire_damage > 0 then - if minetest.get_item_group(nn, "fire") ~= 0 then + if (minetest.get_item_group(nn, "fire") ~= 0) or nn == "mcl_nether:magma" then return true end end @@ -855,17 +855,21 @@ local do_env_damage = function(self) -- fire damage elseif self.fire_damage > 0 - and (nodef.groups.fire) then + and (nodef.groups.fire) or self.standing_on == "mcl_nether:magma" then if self.fire_damage ~= 0 then self.health = self.health - self.fire_damage + if self.standing_on ~= "mcl_nether:magma" then + effect(pos, 5, "fire_basic_flame.png", nil, nil, 1, nil) - effect(pos, 5, "fire_basic_flame.png", nil, nil, 1, nil) - - if check_for_death(self, "fire", {type = "environment", + if check_for_death(self, "fire", {type = "environment", + pos = pos, node = self.standing_in}) then + return true + end + elseif check_for_death(self, "water", {type = "environment", pos = pos, node = self.standing_in}) then - return true + return true end end