Paper/patches/server/0465-Fix-Not-a-string-Map-Conversion-spam.patch

55 lines
2.8 KiB
Diff
Raw Normal View History

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-04-24 15:46:45 +02:00
index d42d39dff5aeb91c5b1e6a7fb967ce70f1a88b7e..38c0855a6f9398f8d075f304288cf9e9f695770a 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-04-24 15:46:45 +02:00
@@ -21,6 +21,8 @@ import net.minecraft.core.component.DataComponents;
2021-06-11 14:02:28 +02:00
import net.minecraft.nbt.CompoundTag;
import net.minecraft.nbt.ListTag;
import net.minecraft.nbt.NbtOps;
+import net.minecraft.nbt.NumericTag;
+import net.minecraft.nbt.StringTag;
import net.minecraft.nbt.Tag;
2024-04-24 15:46:45 +02:00
import net.minecraft.network.FriendlyByteBuf;
2021-06-11 14:02:28 +02:00
import net.minecraft.network.chat.Component;
2024-04-24 15:46:45 +02:00
@@ -120,7 +122,26 @@ public class MapItemSavedData extends SavedData {
}
2021-06-11 14:02:28 +02:00
2024-04-24 15:46:45 +02:00
public static MapItemSavedData load(CompoundTag nbt, HolderLookup.Provider registryLookup) {
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");
2021-06-11 14:02:28 +02:00
+ if (dimension instanceof NumericTag && ((NumericTag) dimension).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) {
2021-06-16 19:48:25 +02:00
+ dimension = StringTag.valueOf("minecraft:" + world.getName().toLowerCase(java.util.Locale.ENGLISH));
2021-06-11 14:02:28 +02:00
+ } else {
2021-06-16 19:48:25 +02:00
+ dimension = StringTag.valueOf("bukkit:_invalidworld_");
2021-06-11 14:02:28 +02:00
+ }
+ } else {
2021-06-16 19:48:25 +02:00
+ dimension = 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);