[my_old_doors] Use "coloredwood" rather than "stained_wood" for
crafting.
This commit is contained in:
parent
53cf42c7aa
commit
c27745c1df
@ -1,3 +1,3 @@
|
||||
default
|
||||
mdoors
|
||||
stained_wood
|
||||
coloredwood
|
||||
|
@ -26,32 +26,32 @@ end
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door1_locked 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:yellow", ""},
|
||||
{"stained_wood:yellow", "stained_wood:yellow", "default:steel_ingot"},
|
||||
{"stained_wood:yellow", "stained_wood:yellow", ""}
|
||||
{"default:glass", "coloredwood:wood_yellow", ""},
|
||||
{"coloredwood:wood_yellow", "coloredwood:wood_yellow", "default:steel_ingot"},
|
||||
{"coloredwood:wood_yellow", "coloredwood:wood_yellow", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door2_locked 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:red", ""},
|
||||
{"stained_wood:red", "stained_wood:red", "default:steel_ingot"},
|
||||
{"stained_wood:red", "stained_wood:red", ""}
|
||||
{"default:glass", "coloredwood:wood_red", ""},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", "default:steel_ingot"},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door3_locked 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:gray", ""},
|
||||
{"stained_wood:gray", "stained_wood:gray", "default:steel_ingot"},
|
||||
{"stained_wood:gray", "stained_wood:gray", ""}
|
||||
{"default:glass", "coloredwood:wood_gray", ""},
|
||||
{"coloredwood:wood_gray", "coloredwood:wood_gray", "default:steel_ingot"},
|
||||
{"coloredwood:wood_gray", "coloredwood:wood_gray", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door4_locked 1",
|
||||
recipe = {
|
||||
{"stained_wood:red", "stained_wood:red", ""},
|
||||
{"stained_wood:red", "dye:black", "default:steel_ingot"},
|
||||
{"stained_wood:red", "stained_wood:red", ""}
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""},
|
||||
{"coloredwood:wood_red", "dye:black", "default:steel_ingot"},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""}
|
||||
}
|
||||
})
|
||||
|
@ -25,33 +25,33 @@ end
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door1 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:yellow", ""},
|
||||
{"stained_wood:yellow", "stained_wood:yellow", ""},
|
||||
{"stained_wood:yellow", "stained_wood:yellow", ""}
|
||||
{"default:glass", "coloredwood:wood_yellow", ""},
|
||||
{"coloredwood:wood_yellow", "coloredwood:wood_yellow", ""},
|
||||
{"coloredwood:wood_yellow", "coloredwood:wood_yellow", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door2 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:red", ""},
|
||||
{"stained_wood:red", "stained_wood:red", ""},
|
||||
{"stained_wood:red", "stained_wood:red", ""}
|
||||
{"default:glass", "coloredwood:wood_red", ""},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door3 1",
|
||||
recipe = {
|
||||
{"default:glass", "stained_wood:gray", ""},
|
||||
{"stained_wood:gray", "stained_wood:gray", ""},
|
||||
{"stained_wood:gray", "stained_wood:gray", ""}
|
||||
{"default:glass", "coloredwood:wood_gray", ""},
|
||||
{"coloredwood:wood_gray", "coloredwood:wood_gray", ""},
|
||||
{"coloredwood:wood_gray", "coloredwood:wood_gray", ""}
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "my_old_doors:door4 1",
|
||||
recipe = {
|
||||
{"stained_wood:red", "stained_wood:red", ""},
|
||||
{"stained_wood:red", "dye:black", ""},
|
||||
{"stained_wood:red", "stained_wood:red", ""}
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""},
|
||||
{"coloredwood:wood_red", "dye:black", ""},
|
||||
{"coloredwood:wood_red", "coloredwood:wood_red", ""}
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user