1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2024-09-27 22:00:20 +02:00

changed recipes for armchair and chains.

added alternate craft for chains.
This commit is contained in:
Vanessa 2013-03-26 21:59:39 -04:00
parent 033200662b
commit 67d8bbebc9

View File

@ -31,9 +31,9 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:armchair 2",
recipe = {
{ "default:wood",""},
{ "default:wood","default:wood" },
{ "wool:black",""},
{ "default:wood","default:wood" },
{ "wool:black","wool:black" },
},
})
@ -123,9 +123,18 @@ minetest.register_craft({
minetest.register_craft({
output = "homedecor:chains 4",
recipe = {
{"","default:steel_ingot",""},
{"","default:steel_ingot","default:steel_ingot"},
{ "default:steel_ingot","", "default:steel_ingot" },
{ "", "default:steel_ingot", "" },
{ "default:steel_ingot", "default:steel_ingot", "" },
},
})
minetest.register_craft({
output = "homedecor:chains 4",
recipe = {
{ "glooptest:chainlink", "default:steel_ingot", "glooptest:chainlink"},
{ "glooptest:chainlink", "", "glooptest:chainlink" },
{ "glooptest:chainlink", "", "glooptest:chainlink" },
},
})