mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-27 19:09:22 +00:00
ClassInstanceMultiMap belongs to Minecraft vanilla entity storage. And is unused, since replaced by spottedleaf's entity storage (rewrite chunk system). However these patches might be useful for vanilla entity storage if is used.
20 lines
920 B
Diff
20 lines
920 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: HaHaWTH <102713261+HaHaWTH@users.noreply.github.com>
|
|
Date: Sun, 7 Jul 2024 01:59:11 +0800
|
|
Subject: [PATCH] Fix MC-223153
|
|
|
|
Related MC issue: https://bugs.mojang.com/browse/MC/issues/MC-223153
|
|
|
|
diff --git a/net/minecraft/world/level/block/Blocks.java b/net/minecraft/world/level/block/Blocks.java
|
|
index 941c57083803d69503e83c3ccbbb2759ba3db605..57aad048034005543a72556e990b53db8deebfee 100644
|
|
--- a/net/minecraft/world/level/block/Blocks.java
|
|
+++ b/net/minecraft/world/level/block/Blocks.java
|
|
@@ -6732,6 +6732,7 @@ public class Blocks {
|
|
.mapColor(MapColor.COLOR_ORANGE)
|
|
.instrument(NoteBlockInstrument.BASEDRUM)
|
|
.requiresCorrectToolForDrops()
|
|
+ .sound(SoundType.COPPER) // Leaf - Fix MC-223153
|
|
.strength(5.0F, 6.0F)
|
|
);
|
|
public static final Block RAW_GOLD_BLOCK = register(
|