Revert minetest.add_entity() -> mcl_mobs.spawn() from #4445 (#4679)

Reviewed-on: VoxeLibre/VoxeLibre#4679
Reviewed-by: kno10 <kno10@noreply.git.minetest.land>
Co-authored-by: teknomunk <teknomunk@protonmail.com>
Co-committed-by: teknomunk <teknomunk@protonmail.com>
This commit is contained in:
teknomunk 2024-10-08 15:34:30 +02:00 committed by the-real-herowl
parent 253a06fa08
commit 614518c6cd
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ end
-- Spawn a child
function mcl_mobs.spawn_child(pos, mob_type)
local child = mcl_mobs.spawn(pos, mob_type)
local child = minetest.add_entity(pos, mob_type)
if not child then
return
end