mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 06:13:17 -04:00
Add steel block -> steel ingots recipe
Steel blocks in MineTest right now are not useful as storage for iron, since once you craft ingots into a block, you can't craft them back into ingots. This commit adds a recipe allowing you to do just that, so steel blocks become more than just a decorative block.
This commit is contained in:
parent
5497db98de
commit
e25c3f6c93
1 changed files with 7 additions and 0 deletions
|
@ -378,6 +378,13 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:steel_ingot 9',
|
||||
recipe = {
|
||||
{'default:steelblock'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:steelblock',
|
||||
recipe = {
|
||||
|
|
Loading…
Add table
Reference in a new issue