forked from minetest-mods/moreblocks
Make wood_tile_center craftable (#129)
place wood_tile_center craft recipe before wood_tile so that it's craftable, otherwise crafting a wood_tile_center gives a normal wood_tile since they all belong to group:wood.
This commit is contained in:
parent
5fc5fce74e
commit
723db44933
18
crafting.lua
18
crafting.lua
@ -35,6 +35,15 @@ minetest.register_craft({
|
|||||||
recipe = {"default:junglegrass", "default:cobble"},
|
recipe = {"default:junglegrass", "default:cobble"},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "moreblocks:wood_tile_center 9",
|
||||||
|
recipe = {
|
||||||
|
{"group:wood", "group:wood", "group:wood"},
|
||||||
|
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
||||||
|
{"group:wood", "group:wood", "group:wood"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:wood_tile 9",
|
output = "moreblocks:wood_tile 9",
|
||||||
recipe = {
|
recipe = {
|
||||||
@ -50,15 +59,6 @@ minetest.register_craft({
|
|||||||
recipe = {"moreblocks:wood_tile_flipped"}
|
recipe = {"moreblocks:wood_tile_flipped"}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "moreblocks:wood_tile_center 9",
|
|
||||||
recipe = {
|
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
|
||||||
{"group:wood", "moreblocks:wood_tile", "group:wood"},
|
|
||||||
{"group:wood", "group:wood", "group:wood"},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "moreblocks:wood_tile_full 4",
|
output = "moreblocks:wood_tile_full 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
Loading…
Reference in New Issue
Block a user