From baaf3e7a135311ce27d79a45c2bd256170d8edbc Mon Sep 17 00:00:00 2001 From: Alexander Minges Date: Fri, 1 May 2020 12:37:02 +0200 Subject: [PATCH] mcl_mobs: when moving away from dangers, check if destination is dangerous itself --- mods/ENTITIES/mcl_mobs/api.lua | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index 3cae6670..4a4a56bb 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -2026,7 +2026,7 @@ local do_states = function(self, dtime) elseif self.fire_damage > 0 then - lp = minetest.find_node_near(s, 1, {"group:fire"}) + lp = minetest.find_node_near(s, 1, {"group:fire", "mcl_nether:magma"}) end @@ -2041,6 +2041,26 @@ local do_states = function(self, dtime) -- did we find land? if lp then + local nn = minetest.get_node(lp).name + if is_node_dangerous(self, nn) then + -- is the chosen destination safe? Retry if not (max 10 iterations) + local i = 0 + while i < 10 do + if lp then + nn = minetest.get_node(lp).name + minetest.log("Found solid block: " .. nn) + if not is_node_dangerous(self, nn) then break + end + -- look for solid node 5 blocks around the mob's position + elseif i < 5 then + lp = minetest.find_node_near(s, 5, {"group:solid"}) + -- after 5 iterations double search radius + elseif i < 10 then + lp = minetest.find_node_near(s, 10, {"group:solid"}) + end + i = i + 1 + end + end local vec = { x = lp.x - s.x,