mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +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) {
|
if (!this.g.w) {
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
Server server = g.getServer();
|
Server server = g.getServer();
|
||||||
while (!this.a.isEmpty()) {
|
for (int i = 0; i < 50 && !this.a.isEmpty(); i++) {
|
||||||
long chunkcoordinates = this.a.popFirst();
|
long chunkcoordinates = this.a.popFirst();
|
||||||
Chunk chunk = e.get(chunkcoordinates);
|
Chunk chunk = e.get(chunkcoordinates);
|
||||||
if (chunk == null) continue;
|
if (chunk == null) continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user