Skip to content
Snippets Groups Projects
Commit 752ab3db authored by TenPlus1's avatar TenPlus1
Browse files

Added on_spawn example

parent e6d9611c
Branches
No related tags found
No related merge requests found
......@@ -57,7 +57,18 @@ mobs:register_mob("mobs_animal:rat", {
]]
})
mobs:register_spawn("mobs_animal:rat", {"default:stone"}, 20, 5, 15000, 2, 0)
--mobs:register_spawn("mobs_animal:rat", {"default:stone"}, 20, 5, 15000, 2, 0)
local function rat_spawn(self, pos)
print (self:get_luaentity().name, pos.x, pos.y, pos.z)
end
mobs:spawn({
name = "mobs_animal:rat",
nodes = {"default:stone"},
max_height = 0,
-- on_spawn = rat_spawn,
})
mobs:register_egg("mobs_animal:rat", S("Rat"), "mobs_rat_inventory.png", 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment