13
0
geforkt von Mirrors/Paper

SPIGOT-7780, #1482: Cannot edit chunks during unload event

Run all chunk unload events before the call to updateHighestAllowedStatus.

By: blablubbabc <lukas@wirsindwir.de>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2024-09-27 08:46:44 +10:00
Ursprung 074c4c011e
Commit 2c7ce2505b
2 geänderte Dateien mit 38 neuen und 18 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,18 @@
--- a/net/minecraft/server/level/ChunkMapDistance.java --- a/net/minecraft/server/level/ChunkMapDistance.java
+++ b/net/minecraft/server/level/ChunkMapDistance.java +++ b/net/minecraft/server/level/ChunkMapDistance.java
@@ -163,7 +163,7 @@ @@ -121,6 +121,11 @@
}
if (!this.chunksToUpdateFutures.isEmpty()) {
+ // CraftBukkit start - SPIGOT-7780: Call chunk unload events before updateHighestAllowedStatus
+ this.chunksToUpdateFutures.forEach((playerchunk) -> {
+ playerchunk.callEventIfUnloading(playerchunkmap);
+ });
+ // CraftBukkit end
this.chunksToUpdateFutures.forEach((playerchunk) -> {
playerchunk.updateHighestAllowedStatus(playerchunkmap);
});
@@ -163,7 +168,7 @@
} }
} }
@ -9,7 +21,7 @@
ArraySetSorted<Ticket<?>> arraysetsorted = this.getTickets(i); ArraySetSorted<Ticket<?>> arraysetsorted = this.getTickets(i);
int j = getTicketLevelAt(arraysetsorted); int j = getTicketLevelAt(arraysetsorted);
Ticket<?> ticket1 = (Ticket) arraysetsorted.addOrGet(ticket); Ticket<?> ticket1 = (Ticket) arraysetsorted.addOrGet(ticket);
@@ -173,13 +173,15 @@ @@ -173,13 +178,15 @@
this.ticketTracker.update(i, ticket.getTicketLevel(), true); this.ticketTracker.update(i, ticket.getTicketLevel(), true);
} }
@ -27,7 +39,7 @@
} }
if (arraysetsorted.isEmpty()) { if (arraysetsorted.isEmpty()) {
@@ -187,6 +189,7 @@ @@ -187,6 +194,7 @@
} }
this.ticketTracker.update(i, getTicketLevelAt(arraysetsorted), false); this.ticketTracker.update(i, getTicketLevelAt(arraysetsorted), false);
@ -35,7 +47,7 @@
} }
public <T> void addTicket(TicketType<T> tickettype, ChunkCoordIntPair chunkcoordintpair, int i, T t0) { public <T> void addTicket(TicketType<T> tickettype, ChunkCoordIntPair chunkcoordintpair, int i, T t0) {
@@ -200,19 +203,33 @@ @@ -200,19 +208,33 @@
} }
public <T> void addRegionTicket(TicketType<T> tickettype, ChunkCoordIntPair chunkcoordintpair, int i, T t0) { public <T> void addRegionTicket(TicketType<T> tickettype, ChunkCoordIntPair chunkcoordintpair, int i, T t0) {
@ -71,7 +83,7 @@
} }
private ArraySetSorted<Ticket<?>> getTickets(long i) { private ArraySetSorted<Ticket<?>> getTickets(long i) {
@@ -251,6 +268,7 @@ @@ -251,6 +273,7 @@
ChunkCoordIntPair chunkcoordintpair = sectionposition.chunk(); ChunkCoordIntPair chunkcoordintpair = sectionposition.chunk();
long i = chunkcoordintpair.toLong(); long i = chunkcoordintpair.toLong();
ObjectSet<EntityPlayer> objectset = (ObjectSet) this.playersPerChunk.get(i); ObjectSet<EntityPlayer> objectset = (ObjectSet) this.playersPerChunk.get(i);
@ -79,7 +91,7 @@
objectset.remove(entityplayer); objectset.remove(entityplayer);
if (objectset.isEmpty()) { if (objectset.isEmpty()) {
@@ -380,6 +398,26 @@ @@ -380,6 +403,26 @@
return !this.tickets.isEmpty(); return !this.tickets.isEmpty();
} }

Datei anzeigen

@ -82,13 +82,19 @@
}); });
}); });
} }
@@ -290,6 +310,30 @@ @@ -285,6 +305,38 @@
FullChunkStatus fullchunkstatus1 = ChunkLevel.fullStatus(this.ticketLevel); playerchunkmap.onFullChunkStatusChange(this.pos, fullchunkstatus);
boolean flag = fullchunkstatus.isOrAfter(FullChunkStatus.FULL); }
boolean flag1 = fullchunkstatus1.isOrAfter(FullChunkStatus.FULL);
+ // CraftBukkit start + // CraftBukkit start
+ // ChunkUnloadEvent: Called before the chunk is unloaded: isChunkLoaded is still true and chunk can still be modified by plugins. + // ChunkUnloadEvent: Called before the chunk is unloaded: isChunkLoaded is still true and chunk can still be modified by plugins.
+ if (flag && !flag1) { + // SPIGOT-7780: Moved out of updateFutures to call all chunk unload events before calling updateHighestAllowedStatus for all chunks
+ protected void callEventIfUnloading(PlayerChunkMap playerchunkmap) {
+ FullChunkStatus oldFullChunkStatus = ChunkLevel.fullStatus(this.oldTicketLevel);
+ FullChunkStatus newFullChunkStatus = ChunkLevel.fullStatus(this.ticketLevel);
+ boolean oldIsFull = oldFullChunkStatus.isOrAfter(FullChunkStatus.FULL);
+ boolean newIsFull = newFullChunkStatus.isOrAfter(FullChunkStatus.FULL);
+ if (oldIsFull && !newIsFull) {
+ this.getFullChunkFuture().thenAccept((either) -> { + this.getFullChunkFuture().thenAccept((either) -> {
+ Chunk chunk = (Chunk) either.orElse(null); + Chunk chunk = (Chunk) either.orElse(null);
+ if (chunk != null) { + if (chunk != null) {
@ -109,11 +115,13 @@
+ // Run callback right away if the future was already done + // Run callback right away if the future was already done
+ playerchunkmap.callbackExecutor.run(); + playerchunkmap.callbackExecutor.run();
+ } + }
+ }
+ // CraftBukkit end + // CraftBukkit end
+
this.wasAccessibleSinceLastSave |= flag1; protected void updateFutures(PlayerChunkMap playerchunkmap, Executor executor) {
if (!flag && flag1) { FullChunkStatus fullchunkstatus = ChunkLevel.fullStatus(this.oldTicketLevel);
@@ -341,6 +385,26 @@ FullChunkStatus fullchunkstatus1 = ChunkLevel.fullStatus(this.ticketLevel);
@@ -341,6 +393,26 @@
this.onLevelChange.onLevelChange(this.pos, this::getQueueLevel, this.ticketLevel, this::setQueueLevel); this.onLevelChange.onLevelChange(this.pos, this::getQueueLevel, this.ticketLevel, this::setQueueLevel);
this.oldTicketLevel = this.ticketLevel; this.oldTicketLevel = this.ticketLevel;