Decrease intensity of fastmode clearing

This commit is contained in:
boy0001 2015-09-01 07:31:53 +10:00
parent 80b2c6b792
commit 9accbd5ea7

View File

@ -317,7 +317,7 @@ public class BukkitChunkManager extends ChunkManager {
@Override
public void run() {
long start = System.currentTimeMillis();
while (chunks.size() > 0 && System.currentTimeMillis() - start < 20) {
while (chunks.size() > 0 && System.currentTimeMillis() - start < 5) {
ChunkLoc chunk = chunks.remove(0);
int x = chunk.x;
int z = chunk.z;