Fix zinc ore sound inconsistency

This commit is contained in:
grimmauld 2020-09-05 18:39:06 +02:00
parent a2e4ffbf86
commit 44bc5506cf

View File

@ -1100,7 +1100,8 @@ public class AllBlocks {
public static final BlockEntry<Block> ZINC_ORE = REGISTRATE.block("zinc_ore", Block::new)
.initialProperties(() -> Blocks.GOLD_BLOCK)
.properties(p -> p.harvestLevel(2)
.harvestTool(ToolType.PICKAXE))
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE))
.transform(tagBlockAndItem("ores/zinc"))
.build()
.register();