summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim <t4im@users.noreply.github.com>2015-01-30 17:49:32 +0100
committerTim <t4im@users.noreply.github.com>2015-01-30 17:50:06 +0100
commita0cf9eb8f325b054b180c0becc7f1b0cb7751350 (patch)
tree1b6ce63ea1f5305d6bca93e51ee179edcaeeaad7
parentb9173be3b80efdd690bd60b80ac13fde05f3410d (diff)
replace overlooked latex->rubber furnace recipe with glue as a form of "rubber cement"
-rw-r--r--technic/tools/tree_tap.lua17
1 files changed, 10 insertions, 7 deletions
diff --git a/technic/tools/tree_tap.lua b/technic/tools/tree_tap.lua
index fe082d4..2ab6823 100644
--- a/technic/tools/tree_tap.lua
+++ b/technic/tools/tree_tap.lua
@@ -1,5 +1,6 @@
local S = technic.getter
+local mesecons_materials = minetest.get_modpath("mesecons_materials")
minetest.register_tool("technic:treetap", {
description = S("Tree Tap"),
@@ -39,17 +40,19 @@ minetest.register_craft({
{"", "default:stick", "default:stick"}
},
})
-
+
minetest.register_craftitem("technic:raw_latex", {
description = S("Raw Latex"),
inventory_image = "technic_raw_latex.png",
})
-
-minetest.register_craft({
- type = "cooking",
- output = "technic:rubber",
- recipe = "technic:raw_latex",
-})
+
+if mesecons_materials then
+ minetest.register_craft({
+ type = "cooking",
+ recipe = "technic:raw_latex",
+ output = "mesecons_materials:glue",
+ })
+end
minetest.register_craftitem("technic:rubber", {
description = S("Rubber Fiber"),