mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
16 lines
710 B
Diff
16 lines
710 B
Diff
--- a/net/minecraft/server/ChunkTaskScheduler.java
|
|
+++ b/net/minecraft/server/ChunkTaskScheduler.java
|
|
@@ -39,6 +39,12 @@
|
|
this.f = iasynctaskhandler;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public void forcePolluteCache(ChunkCoordIntPair chunkcoordintpair) {
|
|
+ this.g.put(chunkcoordintpair.a(), new Scheduler.a(chunkcoordintpair, new ProtoChunk(chunkcoordintpair, ChunkConverter.a), ChunkStatus.EMPTY));
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
protected Scheduler.a a(ChunkCoordIntPair chunkcoordintpair) {
|
|
return (Scheduler.a) this.g.computeIfAbsent(Long.valueOf(chunkcoordintpair.a()), (olong) -> {
|
|
ProtoChunk protochunk = this.a(chunkcoordintpair.x, chunkcoordintpair.z);
|