forked from VoxeLibre/VoxeLibre
Add crafting recipe for smithing table
This commit is contained in:
parent
498b1c792a
commit
24cc4318e2
|
@ -151,3 +151,12 @@ minetest.register_node("mcl_smithing_table:table", {
|
||||||
_mcl_blast_resistance = 2.5,
|
_mcl_blast_resistance = 2.5,
|
||||||
_mcl_hardness = 2.5
|
_mcl_hardness = 2.5
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_smithing_table:table",
|
||||||
|
recipe = {
|
||||||
|
{"mcl_core:iron_ingot", "mcl_core:iron_ingot", ""},
|
||||||
|
{"group:wood", "group:wood", ""},
|
||||||
|
{"group:wood", "group:wood", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue