diff options
-rw-r--r-- | init.lua | 19 | ||||
-rw-r--r-- | tubes.lua | 5 |
2 files changed, 13 insertions, 11 deletions
@@ -366,14 +366,17 @@ end end end -dofile(minetest.get_modpath("pipeworks").."/tubes.lua") -dofile(minetest.get_modpath("pipeworks").."/devices.lua") -dofile(minetest.get_modpath("pipeworks").."/autoplace.lua") -dofile(minetest.get_modpath("pipeworks").."/crafts.lua") -dofile(minetest.get_modpath("pipeworks").."/flowing_logic.lua") -dofile(minetest.get_modpath("pipeworks").."/compat.lua") -dofile(minetest.get_modpath("pipeworks").."/item_transport.lua") -dofile(minetest.get_modpath("pipeworks").."/autocrafter.lua") +local modpath = minetest.get_modpath("pipeworks") + +dofile(modpath.."/tubes.lua") +dofile(modpath.."/teleport_tube.lua") +dofile(modpath.."/devices.lua") +dofile(modpath.."/autoplace.lua") +dofile(modpath.."/crafts.lua") +dofile(modpath.."/flowing_logic.lua") +dofile(modpath.."/compat.lua") +dofile(modpath.."/item_transport.lua") +dofile(modpath.."/autocrafter.lua") minetest.register_alias("pipeworks:deployer_off", "technic:deployer_off") minetest.register_alias("pipeworks:deployer_on", "technic:deployer_on") @@ -509,7 +509,6 @@ minetest.register_abm({nodenames={"group:sand_tube"},interval=1,chance=1, object:remove() end end - end}) + end +}) -modpath=minetest.get_modpath("pipeworks") -dofile(modpath.."/teleport_tube.lua") |