Change recipe for stone/desert stone tile

This commit is contained in:
Wuzzy 2023-08-05 22:05:11 +02:00
parent dd0f7c7d0c
commit 672d8ac2f7

View File

@ -88,9 +88,10 @@ minetest.register_craft({
})
minetest.register_craft({
output = "xdecor:desertstone_tile",
output = "xdecor:desertstone_tile 4",
recipe = {
{"default:desert_stone_block"},
{"default:desert_stone_block", "default:desert_stone_block"},
{"default:desert_stone_block", "default:desert_stone_block"},
}
})
@ -205,9 +206,10 @@ minetest.register_craft({
})
minetest.register_craft({
output = "xdecor:stone_tile_x",
output = "xdecor:stone_tile_x 4",
recipe = {
{"default:stone_block"},
{"default:stone_block", "default:stone_block"},
{"default:stone_block", "default:stone_block"},
}
})