summaryrefslogtreecommitdiff
path: root/pipeworks
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-12-17 02:20:30 -0500
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-12-17 02:20:30 -0500
commitec25fd83415d0ecb49f41295af3dc30f14850b2f (patch)
tree59fe699656e75a52e6665b385907b86cc0b89c16 /pipeworks
parent856b86858ebfa4af2c352b022188f82dcff7ed92 (diff)
downloaddreambuilder_modpack-ec25fd83415d0ecb49f41295af3dc30f14850b2f.tar
dreambuilder_modpack-ec25fd83415d0ecb49f41295af3dc30f14850b2f.tar.gz
dreambuilder_modpack-ec25fd83415d0ecb49f41295af3dc30f14850b2f.tar.bz2
dreambuilder_modpack-ec25fd83415d0ecb49f41295af3dc30f14850b2f.tar.xz
dreambuilder_modpack-ec25fd83415d0ecb49f41295af3dc30f14850b2f.zip
update biome_lib, digilines, hotbar, mesecons, pipeworks,
ropes, technic, unified inventory, unified dyes, vines, and worldedit
Diffstat (limited to 'pipeworks')
-rw-r--r--pipeworks/depends.txt4
-rw-r--r--pipeworks/filter-injector.lua2
-rw-r--r--pipeworks/init.lua7
3 files changed, 8 insertions, 5 deletions
diff --git a/pipeworks/depends.txt b/pipeworks/depends.txt
index 97c9e30..b5dcdb1 100644
--- a/pipeworks/depends.txt
+++ b/pipeworks/depends.txt
@@ -1,5 +1,5 @@
default
basic_materials
-mesecons
-mesecons_mvps
+mesecons?
+mesecons_mvps?
digilines?
diff --git a/pipeworks/filter-injector.lua b/pipeworks/filter-injector.lua
index 29fc1d3..675ea07 100644
--- a/pipeworks/filter-injector.lua
+++ b/pipeworks/filter-injector.lua
@@ -193,6 +193,8 @@ local function punch_filter(data, filtpos, filtnode, msg)
["technic:mv_grinder"] = "dst",
["technic:mv_grinder_active"] = "dst",
["technic:tool_workshop"] = "src",
+ ["technic:mv_freezer"] = "dst",
+ ["technic:mv_freezer_active"] = "dst"
}
-- make sure there's something appropriate to inject the item into
diff --git a/pipeworks/init.lua b/pipeworks/init.lua
index 714480e..445a8d4 100644
--- a/pipeworks/init.lua
+++ b/pipeworks/init.lua
@@ -133,15 +133,16 @@ dofile(pipeworks.modpath..logicdir.."flowable_node_registry_install.lua")
if pipeworks.enable_pipes then dofile(pipeworks.modpath.."/pipes.lua") end
if pipeworks.enable_teleport_tube then dofile(pipeworks.modpath.."/teleport_tube.lua") end
if pipeworks.enable_pipe_devices then dofile(pipeworks.modpath.."/devices.lua") end
-
if pipeworks.enable_redefines then
dofile(pipeworks.modpath.."/compat-chests.lua")
dofile(pipeworks.modpath.."/compat-furnaces.lua")
end
if pipeworks.enable_autocrafter then dofile(pipeworks.modpath.."/autocrafter.lua") end
-if pipeworks.enable_lua_tube then dofile(pipeworks.modpath.."/lua_tube.lua") end
+if pipeworks.enable_lua_tube and
+ (minetest.get_modpath("mesecons") or minetest.get_modpath("digilines")) then
+ dofile(pipeworks.modpath.."/lua_tube.lua")
+end
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")
print("Pipeworks loaded!")
-