Lower TPS threshold please

This commit is contained in:
dordsor whitwell 2017-06-24 16:11:52 +01:00 committed by GitHub
parent 355e16fe92
commit 507d0f19e4

View File

@ -251,7 +251,7 @@ public abstract class HybridUtils {
}
if (!chunks.isEmpty()) {
long diff = System.currentTimeMillis() + 1;
if (System.currentTimeMillis() - baseTime - last.get() > 2000 && last.get() != 0) {
if (System.currentTimeMillis() - baseTime - last.get() > 2200 && last.get() != 0) {
last.set(0);
PS.debug(C.PREFIX.s() + "Detected low TPS. Rescheduling in 30s");
Iterator<ChunkLoc> iterator = chunks.iterator();