mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-13 19:52:08 +01:00
Fixed chunk unloading
This commit is contained in:
parent
a52f5ef520
commit
1d49e5a4b1
@ -206,7 +206,7 @@ public class ChunkProviderServer implements IChunkProvider {
|
|||||||
chunk.e();
|
chunk.e();
|
||||||
this.b(chunk);
|
this.b(chunk);
|
||||||
this.a(chunk);
|
this.a(chunk);
|
||||||
// this.a.remove(chunkcoordinates); // CraftBukkit
|
this.a.remove(chunkcoordinates);
|
||||||
this.e.remove(chunkcoordinates);
|
this.e.remove(chunkcoordinates);
|
||||||
this.f.remove(chunk);
|
this.f.remove(chunk);
|
||||||
}
|
}
|
||||||
|
@ -123,6 +123,7 @@ public class CraftWorld implements World {
|
|||||||
provider.a(chunk);
|
provider.a(chunk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
provider.a.remove(x, z);
|
||||||
provider.a.remove(x, z);
|
provider.a.remove(x, z);
|
||||||
provider.e.remove(x, z);
|
provider.e.remove(x, z);
|
||||||
provider.f.remove(chunk);
|
provider.f.remove(chunk);
|
||||||
|
Loading…
Reference in New Issue
Block a user