mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-20 14:23:16 -04:00
Make steelblock drop 9 ingots when dug
This behavior replaces the one in the previous commit, in which one could craft a steel block into 9 ingots.
This commit is contained in:
parent
e25c3f6c93
commit
d8d294ed34
1 changed files with 1 additions and 7 deletions
|
@ -378,13 +378,6 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'default:steel_ingot 9',
|
|
||||||
recipe = {
|
|
||||||
{'default:steelblock'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'default:steelblock',
|
output = 'default:steelblock',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -1504,6 +1497,7 @@ minetest.register_node("default:steelblock", {
|
||||||
tiles = {"default_steel_block.png"},
|
tiles = {"default_steel_block.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2},
|
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2},
|
||||||
|
drop = "default:steel_ingot 9",
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue