mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-26 04:21:07 +01:00
Added fortune drops to iron and gold ores
This commit is contained in:
parent
e3f8dd158e
commit
b2a73f26d7
1 changed files with 2 additions and 0 deletions
|
@ -68,6 +68,7 @@ minetest.register_node("mcl_core:stone_with_iron", {
|
|||
_mcl_blast_resistance = 3,
|
||||
_mcl_hardness = 3,
|
||||
_mcl_silk_touch_drop = true,
|
||||
_mcl_fortune_drop = mcl_core.fortune_drop_ore,
|
||||
})
|
||||
|
||||
|
||||
|
@ -83,6 +84,7 @@ minetest.register_node("mcl_core:stone_with_gold", {
|
|||
_mcl_blast_resistance = 3,
|
||||
_mcl_hardness = 3,
|
||||
_mcl_silk_touch_drop = true,
|
||||
_mcl_fortune_drop = mcl_core.fortune_drop_ore,
|
||||
})
|
||||
|
||||
local redstone_timer = 68.28
|
||||
|
|
Loading…
Reference in a new issue