mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
16 lines
650 B
Diff
16 lines
650 B
Diff
--- a/net/minecraft/server/ChunkTaskScheduler.java
|
|
+++ b/net/minecraft/server/ChunkTaskScheduler.java
|
|
@@ -37,6 +37,12 @@
|
|
this.f = iasynctaskhandler;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public void forcePolluteCache(ChunkCoordIntPair chunkcoordintpair) {
|
|
+ this.progressCache.put(chunkcoordintpair.a(), new Scheduler.a(chunkcoordintpair, new ProtoChunk(chunkcoordintpair, ChunkConverter.a), ChunkStatus.EMPTY));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
@Nullable
|
|
protected Scheduler<ChunkCoordIntPair, ChunkStatus, ProtoChunk>.a a(ChunkCoordIntPair chunkcoordintpair, boolean flag) {
|
|
IChunkLoader ichunkloader = this.e;
|