mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-27 10:49:14 +00:00
Upstream has released updates that appear to apply and compile correctly Purpur Changes: PurpurMC/Purpur@998a4e6 [ci skip] add a good chunk of patch identifying comments PurpurMC/Purpur@e440784 [ci skip] a couple more patch identifying comments PurpurMC/Purpur@c33391b Updated Upstream (Paper) PurpurMC/Purpur@8d7fab1 [ci skip] small patch comment cleanup
21 lines
1.1 KiB
Diff
21 lines
1.1 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 c5f8227cd9631d98cc8404e3f6d6109a55c617aa..041013600b2b76c146d7f73e9429376ac09faf23 100644
|
|
--- a/src/main/java/net/minecraft/world/level/block/Blocks.java
|
|
+++ b/src/main/java/net/minecraft/world/level/block/Blocks.java
|
|
@@ -6600,6 +6600,7 @@ public class Blocks {
|
|
.mapColor(MapColor.COLOR_ORANGE)
|
|
.instrument(NoteBlockInstrument.BASEDRUM)
|
|
.requiresCorrectToolForDrops()
|
|
+ .sound(SoundType.COPPER) // DivineMC - Fix MC-223153
|
|
.strength(5.0F, 6.0F)
|
|
);
|
|
public static final Block RAW_GOLD_BLOCK = register(
|