mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-07-09 03:20:37 +02:00
Creation of steles mod
This commit is contained in:
13
steles/crafts.lua
Normal file
13
steles/crafts.lua
Normal file
@ -0,0 +1,13 @@
|
||||
for _, material in ipairs(steles.materials) do
|
||||
local parts = material:split(":")
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'steles:'..parts[2]..'_stele 4',
|
||||
recipe = {
|
||||
{'', material, ''},
|
||||
{'', 'dye:black', ''},
|
||||
{material, material, material},
|
||||
}
|
||||
})
|
||||
|
||||
end
|
Reference in New Issue
Block a user