Check object on mob tranformation

This commit is contained in:
cora 2022-11-07 13:06:34 +01:00
parent 468b46a920
commit 41055d5abe
1 changed files with 2 additions and 0 deletions

View File

@ -600,10 +600,12 @@ function mcl_util.get_object_name(object)
end
function mcl_util.replace_mob(obj, mob)
if not obj then return end
local rot = obj:get_yaw()
local pos = obj:get_pos()
obj:remove()
obj = minetest.add_entity(pos, mob)
if not obj then return end
obj:set_yaw(rot)
return obj
end