mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-16 07:20:18 +01:00
13 lines
306 B
Lua
13 lines
306 B
Lua
|
local api = stairsplus.api
|
||
|
local register_craft_schema = api.register_craft_schema
|
||
|
|
||
|
for shape, shape_def in pairs(api.registered_shapes) do
|
||
|
if shape ~= "micro_8" then
|
||
|
register_craft_schema({
|
||
|
type = "shapeless",
|
||
|
output = ("micro_8 %i"):format(shape_def.eighths),
|
||
|
recipe = {shape},
|
||
|
})
|
||
|
end
|
||
|
end
|