3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00
Paper/patches/server/0450-Fix-Not-a-string-Map-Conversion-spam.patch

46 Zeilen
2.5 KiB
Diff

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Thu, 8 Oct 2020 00:00:25 -0400
Subject: [PATCH] Fix "Not a string" Map Conversion spam
2021-06-11 14:02:28 +02:00
The maps did convert successfully, but had noisy logs due to Spigot
implementing this logic incorrectly.
This stops the spam by converting the old format to new before
requesting the world.
Track spigot issue to see when fixed: https://hub.spigotmc.org/jira/browse/SPIGOT-6181
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java b/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
2024-10-23 17:58:11 +02:00
index c21ae4975206398e7d20b37a749b830b9219c746..a89f0b652c515efbc24ffc9af47fa65082946e54 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
+++ b/src/main/java/net/minecraft/world/level/saveddata/maps/MapItemSavedData.java
2024-10-23 17:58:11 +02:00
@@ -123,7 +123,26 @@ public class MapItemSavedData extends SavedData {
}
2021-06-11 14:02:28 +02:00
2024-10-23 17:58:11 +02:00
public static MapItemSavedData load(CompoundTag nbt, HolderLookup.Provider registries) {
2022-03-01 06:43:03 +01:00
- DataResult<ResourceKey<Level>> dataresult = DimensionType.parseLegacy(new Dynamic(NbtOps.INSTANCE, nbt.get("dimension"))); // CraftBukkit - decompile error
2021-06-11 14:02:28 +02:00
+ // Paper start - fix "Not a string" spam
+ Tag dimension = nbt.get("dimension");
2024-10-23 17:58:11 +02:00
+ if (dimension instanceof final net.minecraft.nbt.NumericTag numericTag && numericTag.getAsInt() >= CraftWorld.CUSTOM_DIMENSION_OFFSET) {
+ long least = nbt.getLong("UUIDLeast");
+ long most = nbt.getLong("UUIDMost");
2021-06-11 14:02:28 +02:00
+
+ if (least != 0L && most != 0L) {
+ UUID uuid = new UUID(most, least);
+ CraftWorld world = (CraftWorld) Bukkit.getWorld(uuid);
2021-06-11 14:02:28 +02:00
+ if (world != null) {
2024-10-23 17:58:11 +02:00
+ dimension = net.minecraft.nbt.StringTag.valueOf("minecraft:" + world.getName().toLowerCase(java.util.Locale.ENGLISH));
2021-06-11 14:02:28 +02:00
+ } else {
2024-10-23 17:58:11 +02:00
+ dimension = net.minecraft.nbt.StringTag.valueOf("bukkit:_invalidworld_");
2021-06-11 14:02:28 +02:00
+ }
+ } else {
2024-10-23 17:58:11 +02:00
+ dimension = net.minecraft.nbt.StringTag.valueOf("bukkit:_invalidworld_");
2021-06-11 14:02:28 +02:00
+ }
+ }
+ DataResult<ResourceKey<Level>> dataresult = DimensionType.parseLegacy(new Dynamic(NbtOps.INSTANCE, dimension)); // CraftBukkit - decompile error
+ // Paper end - fix "Not a string" spam
Logger logger = MapItemSavedData.LOGGER;
Objects.requireNonNull(logger);