mirror of
https://github.com/minetest-mods/nether.git
synced 2024-12-28 11:50:26 +01:00
Only drop netherrack with a chance of 1/3
This commit is contained in:
parent
faaf073794
commit
0ae4839912
7
init.lua
7
init.lua
@ -331,6 +331,13 @@ minetest.register_node("nether:rack", {
|
|||||||
description = "Netherrack",
|
description = "Netherrack",
|
||||||
tiles = {"nether_netherrack.png"},
|
tiles = {"nether_netherrack.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {{
|
||||||
|
rarity = 3,
|
||||||
|
items = {"nether:rack"},
|
||||||
|
}}
|
||||||
|
},
|
||||||
groups = {cracky=3,level=2},
|
groups = {cracky=3,level=2},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user