Add crafting recipe for smithing table

This commit is contained in:
Code-Sploit 2021-04-22 12:11:47 +00:00 committed by cora
parent 8080932353
commit af2a4b1de0
1 changed files with 9 additions and 0 deletions

View File

@ -151,3 +151,12 @@ minetest.register_node("mcl_smithing_table:table", {
_mcl_blast_resistance = 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", ""}
}
})