[my_cottage_doors] Use "coloredwood" mod rather than "stained_wood" for

crafting.
This commit is contained in:
AntumDeluge 2016-08-23 20:20:31 -07:00
parent 78108c1eba
commit 76b4109025
3 changed files with 13 additions and 13 deletions

View File

@ -1,3 +1,3 @@
default
mdoors
stained_wood
coloredwood

View File

@ -27,18 +27,18 @@ end
minetest.register_craft({
output = "my_cottage_doors:door1_locked 1",
recipe = {
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"},
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"},
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"}
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", "default:steel_ingot"},
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", "default:steel_ingot"},
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", "default:steel_ingot"}
}
})
minetest.register_craft({
output = "my_cottage_doors:door2_locked 1",
recipe = {
{"stained_wood:red", "stained_wood:red", ""},
{"stained_wood:red", "stained_wood:red", "default:steel_ingot"},
{"stained_wood:red", "stained_wood:red", ""}
{"colored_wood:wood_red", "colored_wood:wood_red", ""},
{"colored_wood:wood_red", "colored_wood:wood_red", "default:steel_ingot"},
{"colored_wood:wood_red", "colored_wood:wood_red", ""}
}
})

View File

@ -27,18 +27,18 @@ end
minetest.register_craft({
output = "my_cottage_doors:door1 1",
recipe = {
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"},
{"stained_wood:yellow", "stained_wood:yellow", ""},
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"}
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", "default:steel_ingot"},
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", ""},
{"colored_wood:wood_yellow", "colored_wood:wood_yellow", "default:steel_ingot"}
}
})
minetest.register_craft({
output = "my_cottage_doors:door2 1",
recipe = {
{"stained_wood:red", "stained_wood:red", ""},
{"stained_wood:red", "stained_wood:red", ""},
{"stained_wood:red", "stained_wood:red", ""}
{"colored_wood:wood_red", "colored_wood:wood_red", ""},
{"colored_wood:wood_red", "colored_wood:wood_red", ""},
{"colored_wood:wood_red", "colored_wood:wood_red", ""}
}
})