mirror of
https://github.com/reload-gtn/mtsr_modpack.git
synced 2024-11-16 02:30:59 +03:00
15 lines
260 B
Lua
15 lines
260 B
Lua
|
minetest.register_craft({
|
||
|
output = 'moreores:mithril_ingot 9',
|
||
|
recipe = {
|
||
|
{ "moreores:mithril_block" },
|
||
|
}
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = 'moreores:silver_ingot 9',
|
||
|
recipe = {
|
||
|
{ "moreores:silver_block" },
|
||
|
}
|
||
|
})
|
||
|
|