Restore ABMs, LMBs seem not to work

This commit is contained in:
paly2
2016-04-24 14:58:10 +02:00
parent f6b3ddb487
commit 700c412649
3 changed files with 38 additions and 1 deletions

View File

@ -83,9 +83,18 @@ minetest.register_node("moremesecons_teleporter:teleporter", {
end,
})
--[[
minetest.register_lbm({
name = "moremesecons_teleporter:add_teleporter",
nodenames = {"moremesecons_teleporter:teleporter"},
action = register
})
]]
minetest.register_abm({
nodenames = {"moremesecons_teleporter:teleporter"},
interval=5,
chance=1,
catch_up = false,
action = register
})