mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
limit chunk unloading to 50 per tick
This commit is contained in:
parent
9832ce06f1
commit
87dc04b750
@ -207,7 +207,7 @@ public class ChunkProviderServer implements IChunkProvider {
|
||||
if (!this.g.w) {
|
||||
// CraftBukkit start
|
||||
Server server = g.getServer();
|
||||
while (!this.a.isEmpty()) {
|
||||
for (int i = 0; i < 50 && !this.a.isEmpty(); i++) {
|
||||
long chunkcoordinates = this.a.popFirst();
|
||||
Chunk chunk = e.get(chunkcoordinates);
|
||||
if (chunk == null) continue;
|
||||
|
Loading…
Reference in New Issue
Block a user