Only drop netherrack with a chance of 1/3

This commit is contained in:
PilzAdam 2013-04-30 13:28:51 +02:00
parent faaf073794
commit 0ae4839912
1 changed files with 7 additions and 0 deletions

View File

@ -331,6 +331,13 @@ minetest.register_node("nether:rack", {
description = "Netherrack",
tiles = {"nether_netherrack.png"},
is_ground_content = true,
drop = {
max_items = 1,
items = {{
rarity = 3,
items = {"nether:rack"},
}}
},
groups = {cracky=3,level=2},
sounds = default.node_sound_stone_defaults(),
})