mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-05 06:53:52 +01:00
replace overlooked latex->rubber furnace recipe with glue as a form of "rubber cement"
This commit is contained in:
parent
b9173be3b8
commit
a0cf9eb8f3
@ -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"),
|
||||||
@ -45,11 +46,13 @@ minetest.register_craftitem("technic:raw_latex", {
|
|||||||
inventory_image = "technic_raw_latex.png",
|
inventory_image = "technic_raw_latex.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if mesecons_materials then
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "technic:rubber",
|
|
||||||
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"),
|
||||||
|
Loading…
Reference in New Issue
Block a user