mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-15 21:23:41 +01:00
Fix zinc ore sound inconsistency
This commit is contained in:
parent
a2e4ffbf86
commit
44bc5506cf
1 changed files with 2 additions and 1 deletions
|
@ -1100,7 +1100,8 @@ public class AllBlocks {
|
||||||
public static final BlockEntry<Block> ZINC_ORE = REGISTRATE.block("zinc_ore", Block::new)
|
public static final BlockEntry<Block> ZINC_ORE = REGISTRATE.block("zinc_ore", Block::new)
|
||||||
.initialProperties(() -> Blocks.GOLD_BLOCK)
|
.initialProperties(() -> Blocks.GOLD_BLOCK)
|
||||||
.properties(p -> p.harvestLevel(2)
|
.properties(p -> p.harvestLevel(2)
|
||||||
.harvestTool(ToolType.PICKAXE))
|
.harvestTool(ToolType.PICKAXE)
|
||||||
|
.sound(SoundType.STONE))
|
||||||
.transform(tagBlockAndItem("ores/zinc"))
|
.transform(tagBlockAndItem("ores/zinc"))
|
||||||
.build()
|
.build()
|
||||||
.register();
|
.register();
|
||||||
|
|
Loading…
Reference in a new issue