diff options
author | cheapie <no-email-for-you@example.com> | 2014-05-15 19:30:03 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2014-05-15 19:30:03 -0500 |
commit | e8705a521e7d1ca400e16547d84cd69bf827de77 (patch) | |
tree | 998515d6d93df4c318484f904c5201cd8a44bbf4 | |
parent | dbdc8c4518333605a4b4966a66cefc34e83b76cd (diff) | |
download | plasticbox-e8705a521e7d1ca400e16547d84cd69bf827de77.tar plasticbox-e8705a521e7d1ca400e16547d84cd69bf827de77.tar.gz plasticbox-e8705a521e7d1ca400e16547d84cd69bf827de77.tar.bz2 plasticbox-e8705a521e7d1ca400e16547d84cd69bf827de77.tar.xz plasticbox-e8705a521e7d1ca400e16547d84cd69bf827de77.zip |
Finished recycling
-rw-r--r-- | init.lua | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -172,8 +172,21 @@ if minetest.get_modpath("technic") then technic.register_grinder_recipe({input=data[1], output=data[2]}) end else +minetest.register_craft( { + output = "homedecor:plastic_sheeting 7", + recipe = { + { "plasticbox:plasticbox", "plasticbox:plasticbox" }, + { "plasticbox:plasticbox", "plasticbox:plasticbox" }, + }, +}) end +minetest.register_craft({ + type = "cooking", + output = "homedecor:plastic_sheeting", + recipe = "plasticbox:plastic_powder", +}) + --Register crafts for colored boxes minetest.register_craft({ type = "shapeless", |