forked from your-land/canned_food
11 lines
266 B
Lua
11 lines
266 B
Lua
--Incomplete list
|
|
stoneTypes = {"default:stone"}
|
|
|
|
--Iterates over all stone types and registers a block-to-stone recipe per entry
|
|
|
|
for _, stone in pairs(stoneTypes) do
|
|
minetest.register_craft({
|
|
output = stone
|
|
recipe = {stone.."_block"}
|
|
})
|
|
end |