mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-29 20:09:17 +00:00
Originally vanilla logic is to use stream, and Mojang switched it to Guava's Collections2 since 1.21.4. It is much faster than using stream or manually adding to a new ArrayList. Manually adding to a new ArrayList requires allocating a new object array. However, the Collections2 lazy handles filter condition on iteration, so much better.
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(
|