mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-15 12:02:49 +01:00
Fixed chunk unloading
This commit is contained in:
parent
a52f5ef520
commit
1d49e5a4b1
2 changed files with 2 additions and 1 deletions
|
@ -206,7 +206,7 @@ public class ChunkProviderServer implements IChunkProvider {
|
|||
chunk.e();
|
||||
this.b(chunk);
|
||||
this.a(chunk);
|
||||
// this.a.remove(chunkcoordinates); // CraftBukkit
|
||||
this.a.remove(chunkcoordinates);
|
||||
this.e.remove(chunkcoordinates);
|
||||
this.f.remove(chunk);
|
||||
}
|
||||
|
|
|
@ -123,6 +123,7 @@ public class CraftWorld implements World {
|
|||
provider.a(chunk);
|
||||
}
|
||||
|
||||
provider.a.remove(x, z);
|
||||
provider.a.remove(x, z);
|
||||
provider.e.remove(x, z);
|
||||
provider.f.remove(chunk);
|
||||
|
|
Loading…
Add table
Reference in a new issue