mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
SPIGOT-4916: Fix loading legacy structure data
This commit is contained in:
parent
a46ef53b75
commit
58db403011
@ -1,6 +1,6 @@
|
|||||||
--- a/net/minecraft/server/IChunkLoader.java
|
--- a/net/minecraft/server/IChunkLoader.java
|
||||||
+++ b/net/minecraft/server/IChunkLoader.java
|
+++ b/net/minecraft/server/IChunkLoader.java
|
||||||
@@ -17,10 +17,51 @@
|
@@ -17,15 +17,56 @@
|
||||||
this.b = datafixer;
|
this.b = datafixer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,3 +53,9 @@
|
|||||||
if (i < 1493) {
|
if (i < 1493) {
|
||||||
nbttagcompound = GameProfileSerializer.a(this.b, DataFixTypes.CHUNK, nbttagcompound, i, 1493);
|
nbttagcompound = GameProfileSerializer.a(this.b, DataFixTypes.CHUNK, nbttagcompound, i, 1493);
|
||||||
if (nbttagcompound.getCompound("Level").getBoolean("hasLegacyStructureData")) {
|
if (nbttagcompound.getCompound("Level").getBoolean("hasLegacyStructureData")) {
|
||||||
|
if (this.a == null) {
|
||||||
|
- this.a = PersistentStructureLegacy.a(dimensionmanager, (WorldPersistentData) supplier.get());
|
||||||
|
+ this.a = PersistentStructureLegacy.a(dimensionmanager.getType(), (WorldPersistentData) supplier.get()); // CraftBukkit - getType
|
||||||
|
}
|
||||||
|
|
||||||
|
nbttagcompound = this.a.a(nbttagcompound);
|
||||||
|
Loading…
Reference in New Issue
Block a user