2023-09-24 20:17:29 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Warrior <50800980+Warriorrrr@users.noreply.github.com>
Date: Sun, 24 Sep 2023 18:35:28 +0200
Subject: [PATCH] Fix missing map initialize event call
2023-12-08 20:00:39 +01:00
== AT ==
public net.minecraft.world.level.storage.DimensionDataStorage readSavedData(Ljava/util/function/Function;Lnet/minecraft/util/datafix/DataFixTypes;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData;
2023-09-24 20:17:29 +02:00
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-10-27 18:11:15 +01:00
index 0db41d36d5daf015c750fb0246ab3e5da1cd81a2..7cecbac43f1cd2d9516034ea9d2633c0c76e61f4 100644
2023-09-24 20:17:29 +02:00
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
+++ b/src/main/java/net/minecraft/server/level/ServerLevel.java
2024-10-27 18:11:15 +01:00
@@ -1696,13 +1696,29 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
2023-09-24 20:17:29 +02:00
@Nullable
@Override
2024-04-25 00:36:49 +02:00
public MapItemSavedData getMapData(MapId id) {
2023-12-08 20:00:39 +01:00
- // CraftBukkit start
2024-04-25 00:36:49 +02:00
- MapItemSavedData worldmap = (MapItemSavedData) this.getServer().overworld().getDataStorage().get(MapItemSavedData.factory(), id.key());
2023-12-08 20:00:39 +01:00
- if (worldmap != null) {
- worldmap.id = id;
2024-01-13 18:34:33 +01:00
+ // Paper start - Call missing map initialize event and set id
2023-09-24 20:17:29 +02:00
+ final DimensionDataStorage storage = this.getServer().overworld().getDataStorage();
+
2024-10-25 12:30:19 +02:00
+ final Optional<net.minecraft.world.level.saveddata.SavedData> cacheEntry = storage.cache.get(id.key());
+ if (cacheEntry == null) { // Cache did not contain, try to load and may init
+ final MapItemSavedData worldmap = storage.get(MapItemSavedData.factory(), id.key()); // get populates the cache
+ if (worldmap != null) { // map was read, init it and return
2024-04-25 22:34:46 +02:00
+ worldmap.id = id;
+ new MapInitializeEvent(worldmap.mapView).callEvent();
+ return worldmap;
2023-09-24 20:17:29 +02:00
+ }
2024-10-25 12:30:19 +02:00
+
+ return null; // Map does not exist, reading failed.
2023-12-08 20:00:39 +01:00
}
- return worldmap;
- // CraftBukkit end
2023-09-24 20:17:29 +02:00
+
2024-10-25 12:30:19 +02:00
+ // Cache entry exists, update it with the id ref and return.
+ if (cacheEntry.orElse(null) instanceof final MapItemSavedData mapItemSavedData) {
+ mapItemSavedData.id = id;
+ return mapItemSavedData;
+ }
+
+ return null;
2024-01-13 18:34:33 +01:00
+ // Paper end - Call missing map initialize event and set id
2023-09-24 20:17:29 +02:00
}
@Override