summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-13 21:45:03 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-13 21:45:03 -0500
commit109729cfb27efd816238f094a738a8ac23e83dda (patch)
tree2a1f2f7419e14c7974e3d05c7b1148054581c27f /init.lua
parent14102d7c3ad8f7e4aef271294a74c28e7e851bc2 (diff)
downloadpipeworks-109729cfb27efd816238f094a738a8ac23e83dda.tar
pipeworks-109729cfb27efd816238f094a738a8ac23e83dda.tar.gz
pipeworks-109729cfb27efd816238f094a738a8ac23e83dda.tar.bz2
pipeworks-109729cfb27efd816238f094a738a8ac23e83dda.tar.xz
pipeworks-109729cfb27efd816238f094a738a8ac23e83dda.zip
Added Nore's item transport mod and integrated it into pipeworks
Items can now flow from one chest (or Nore's filter object) to another via the pneumatic tubes! Thanks to Nore and RealBadAngel for the code. Note that this mod has to redefine the default chests and furnaces (see compat.lua) in order to add some new group definitions so that tubes can appear to connect to these objects.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index 977c4a9..142eb97 100644
--- a/init.lua
+++ b/init.lua
@@ -13,7 +13,7 @@
--
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")
-local DEBUG = true
+local DEBUG = false
pipeworks_liquid_texture = "default_water.png"
@@ -326,5 +326,7 @@ 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")
print("Pipeworks loaded!")