2023-08-25 14:59:50 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Allink <arclicious@vivaldi.net>
|
|
|
|
Date: Fri, 25 Aug 2023 11:51:47 +0100
|
|
|
|
Subject: [PATCH] Add length limit to note block sound
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/block/entity/SkullBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/SkullBlockEntity.java
|
2023-10-18 22:49:54 +00:00
|
|
|
index 238b6cd88cb24ca63770db607f2241fcd7210574..ec02597810a4022112ddf31928eb6976e6ac5371 100644
|
2023-08-25 14:59:50 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/block/entity/SkullBlockEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/block/entity/SkullBlockEntity.java
|
2023-10-18 22:49:54 +00:00
|
|
|
@@ -92,7 +92,7 @@ public class SkullBlockEntity extends BlockEntity {
|
2023-08-25 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nbt.contains("note_block_sound", 8)) {
|
|
|
|
- this.noteBlockSound = ResourceLocation.tryParse(nbt.getString("note_block_sound"));
|
|
|
|
+ this.noteBlockSound = ResourceLocation.tryParse(StringUtil.truncateStringIfNecessary(nbt.getString("note_block_sound"), 32767, false)); // Scissors - Add length limit to note block sound
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|