summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2014-05-17 14:29:42 -0500
committercheapie <no-email-for-you@example.com>2014-05-17 14:29:42 -0500
commit0c287cd143a7fe90a5be35546810867b4021afa1 (patch)
tree0f1b43ba7554301ec30dc56d70bd89a8fb561d7e
parent1e4bc3dcf5934657e738bbfa74ca2b917268995a (diff)
downloadplasticbox-0c287cd143a7fe90a5be35546810867b4021afa1.tar
plasticbox-0c287cd143a7fe90a5be35546810867b4021afa1.tar.gz
plasticbox-0c287cd143a7fe90a5be35546810867b4021afa1.tar.bz2
plasticbox-0c287cd143a7fe90a5be35546810867b4021afa1.tar.xz
plasticbox-0c287cd143a7fe90a5be35546810867b4021afa1.zip
Added the ability to recycle pneumatic tubes (from pipeworks)
-rw-r--r--depends.txt1
-rw-r--r--init.lua12
2 files changed, 12 insertions, 1 deletions
diff --git a/depends.txt b/depends.txt
index 2234e67..42f64ae 100644
--- a/depends.txt
+++ b/depends.txt
@@ -1,3 +1,4 @@
homedecor
technic?
bucket?
+pipeworks?
diff --git a/init.lua b/init.lua
index 87423bc..1b7fa46 100644
--- a/init.lua
+++ b/init.lua
@@ -150,6 +150,16 @@ minetest.register_craft( {
if minetest.get_modpath("technic") then
local grinder_recipes = {
+ {"pipeworks:accelerator_tube_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:conductor_tube_off_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:crossing_tube_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:detector_tube_off_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:mese_sand_tube_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:mese_tube_000000", "plasticbox:plastic_powder 1"},
+ {"pipeworks:one_way_tube", "plasticbox:plastic_powder 1"},
+ {"pipeworks:sand_tube_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:teleport_tube_1", "plasticbox:plastic_powder 1"},
+ {"pipeworks:tube_1", "plasticbox:plastic_powder 1"},
{"plasticbox:plasticbox", "plasticbox:plastic_powder 2"},
{"plasticbox:plasticbox_black", "plasticbox:plastic_powder 2"},
{"plasticbox:plasticbox_blue", "plasticbox:plastic_powder 2"},
@@ -365,7 +375,7 @@ for i in ipairs(plasticbox.colorlist) do
end
end
---Other mods' stuff that can be crafted with plastic
+--Crafting recipes involving other mods
if minetest.get_modpath("bucket") then
minetest.register_craft( {
output = "bucket:bucket_empty",