Skip to content

Commit

Permalink
fix: Use deepslate sounds for deepslate waystones #819
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Apr 14, 2024
1 parent 6420caa commit 56b1c1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void initialize(BalmBlocks blocks) {
blocks.register(() -> waystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(waystone), id("waystone"));
blocks.register(() -> mossyWaystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(mossyWaystone), id("mossy_waystone"));
blocks.register(() -> sandyWaystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(sandyWaystone), id("sandy_waystone"));
blocks.register(() -> deepslateWaystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(deepslateWaystone), id("deepslate_waystone"));
blocks.register(() -> deepslateWaystone = new WaystoneBlock(defaultProperties().sound(SoundType.DEEPSLATE)), () -> itemBlock(deepslateWaystone), id("deepslate_waystone"));
blocks.register(() -> blackstoneWaystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(blackstoneWaystone), id("blackstone_waystone"));
blocks.register(() -> endStoneWaystone = new WaystoneBlock(defaultProperties()), () -> itemBlock(endStoneWaystone), id("end_stone_waystone"));
blocks.register(() -> sharestone = new SharestoneBlock(null, defaultProperties()), () -> itemBlock(sharestone), id("sharestone"));
Expand Down

0 comments on commit 56b1c1c

Please sign in to comment.