Change the recipe to prevent an infinite cobble source

This commit is contained in:
Joachim Stolberg 2023-05-06 19:10:39 +02:00
parent 6ee7306e90
commit d2cd7fff27

View File

@ -138,9 +138,9 @@ minetest.register_node("techage:firebox_on", {
minetest.register_craft({
output = "techage:firebox",
recipe = {
{'group:stone', 'group:stone', 'group:stone'},
{'default:stone', 'default:stone', 'default:stone'},
{'techage:iron_ingot', '', 'techage:iron_ingot'},
{'group:stone', 'group:stone', 'group:stone'},
{'default:stone', 'default:stone', 'default:stone'},
},
})