replace overlooked latex->rubber furnace recipe with glue as a form of "rubber cement"

This commit is contained in:
Tim 2015-01-30 17:49:32 +01:00
parent b9173be3b8
commit a0cf9eb8f3
1 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,6 @@
local S = technic.getter local S = technic.getter
local mesecons_materials = minetest.get_modpath("mesecons_materials")
minetest.register_tool("technic:treetap", { minetest.register_tool("technic:treetap", {
description = S("Tree Tap"), description = S("Tree Tap"),
@ -39,17 +40,19 @@ minetest.register_craft({
{"", "default:stick", "default:stick"} {"", "default:stick", "default:stick"}
}, },
}) })
minetest.register_craftitem("technic:raw_latex", { minetest.register_craftitem("technic:raw_latex", {
description = S("Raw Latex"), description = S("Raw Latex"),
inventory_image = "technic_raw_latex.png", inventory_image = "technic_raw_latex.png",
}) })
minetest.register_craft({ if mesecons_materials then
type = "cooking", minetest.register_craft({
output = "technic:rubber", type = "cooking",
recipe = "technic:raw_latex", recipe = "technic:raw_latex",
}) output = "mesecons_materials:glue",
})
end
minetest.register_craftitem("technic:rubber", { minetest.register_craftitem("technic:rubber", {
description = S("Rubber Fiber"), description = S("Rubber Fiber"),