forked from nalc/homedecor_modpack
Merge branch 'master' into 'master'
Fix broken kitchen cabinet recipes Closes #39 See merge request VanessaE/homedecor_modpack!22
This commit is contained in:
commit
f1dc68ab21
|
@ -570,7 +570,7 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet",
|
output = "homedecor:kitchen_cabinet_colorable",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:wood", "group:stick", "group:wood", },
|
{"group:wood", "group:stick", "group:wood", },
|
||||||
{"group:wood", "group:stick", "group:wood", },
|
{"group:wood", "group:stick", "group:wood", },
|
||||||
|
@ -579,53 +579,53 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_steel",
|
output = "homedecor:kitchen_cabinet_colorable_steel",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||||
{"", "homedecor:kitchen_cabinet", ""},
|
{"", "homedecor:kitchen_cabinet_colorable", ""},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_steel",
|
output = "homedecor:kitchen_cabinet_colorable_steel",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"moreblocks:slab_steelblock_1"},
|
{"moreblocks:slab_steelblock_1"},
|
||||||
{ "homedecor:kitchen_cabinet" },
|
{ "homedecor:kitchen_cabinet_colorable" },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_marble",
|
output = "homedecor:kitchen_cabinet_colorable_marble",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"building_blocks:slab_marble"},
|
{"building_blocks:slab_marble"},
|
||||||
{"homedecor:kitchen_cabinet"},
|
{"homedecor:kitchen_cabinet_colorable"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_marble",
|
output = "homedecor:kitchen_cabinet_colorable_marble",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:slab_marble_1"},
|
{"technic:slab_marble_1"},
|
||||||
{"homedecor:kitchen_cabinet"},
|
{"homedecor:kitchen_cabinet_colorable"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_granite",
|
output = "homedecor:kitchen_cabinet_colorable_granite",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"technic:slab_granite_1"},
|
{"technic:slab_granite_1"},
|
||||||
{"homedecor:kitchen_cabinet"},
|
{"homedecor:kitchen_cabinet_colorable"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "homedecor:kitchen_cabinet_half 2",
|
output = "homedecor:kitchen_cabinet_colorable_half 2",
|
||||||
recipe = { "homedecor:kitchen_cabinet" }
|
recipe = { "homedecor:kitchen_cabinet_colorable" }
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:kitchen_cabinet_with_sink",
|
output = "homedecor:kitchen_cabinet_colorable_with_sink",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"group:wood", "default:steel_ingot", "group:wood", },
|
{"group:wood", "default:steel_ingot", "group:wood", },
|
||||||
{"group:wood", "default:steel_ingot", "group:wood", },
|
{"group:wood", "default:steel_ingot", "group:wood", },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user