mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-27 18:59:08 +00:00
Upstream has released updates that appear to apply and compile correctly Purpur Changes: PurpurMC/Purpur@8f0f20d Updated Upstream (Paper)
21 lines
1.0 KiB
Diff
21 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: NONPLAYT <76615486+NONPLAYT@users.noreply.github.com>
|
|
Date: Thu, 11 Jul 2024 19:11:08 +0300
|
|
Subject: [PATCH] Fix MC-223153
|
|
|
|
Original bug on Mojira: https://bugs.mojang.com/browse/MC-223153
|
|
Took here: https://github.com/Winds-Studio/Leaf/blob/ver/1.21/patches/server/0083-Fix-MC-223153.patch
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/Blocks.java b/src/main/java/net/minecraft/world/level/block/Blocks.java
|
|
index 7d58a95f7ae8983b466b275f4f82597d38762af0..c5da55438618475bd298f947ca5ed24b5bc3cfd8 100644
|
|
--- a/src/main/java/net/minecraft/world/level/block/Blocks.java
|
|
+++ b/src/main/java/net/minecraft/world/level/block/Blocks.java
|
|
@@ -7535,6 +7535,7 @@ public class Blocks {
|
|
.mapColor(MapColor.COLOR_ORANGE)
|
|
.instrument(NoteBlockInstrument.BASEDRUM)
|
|
.requiresCorrectToolForDrops()
|
|
+ .sound(SoundType.COPPER) // DivineMC - Fix MC-223153
|
|
.strength(5.0F, 6.0F)
|
|
)
|
|
);
|