forked from mtcontrib/mobs_redo
Added compatibility function (thanks Amaz)
This commit is contained in:
parent
4921956b60
commit
f76acdf724
22
api.lua
22
api.lua
|
@ -2812,3 +2812,25 @@ minetest.override_item("default:chest", {
|
||||||
end,
|
end,
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- compatibility function for old entities to new modpack entities
|
||||||
|
function mobs:alias_mob(old_name, new_name)
|
||||||
|
|
||||||
|
-- spawn egg
|
||||||
|
minetest.register_alias(old_name, new_name)
|
||||||
|
|
||||||
|
-- entity
|
||||||
|
minetest.register_entity(":" .. old_name, {
|
||||||
|
|
||||||
|
physical = false,
|
||||||
|
|
||||||
|
on_step = function(self)
|
||||||
|
|
||||||
|
local pos = self.object:getpos()
|
||||||
|
|
||||||
|
minetest.add_entity(pos, new_name)
|
||||||
|
|
||||||
|
self.object:remove()
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user