Reset Default TPS

TPS of 47 to TPS of 20
This commit is contained in:
opfromthestart 2021-04-12 20:38:21 -04:00
parent 3c74a808f3
commit 69942ad17b

View File

@ -64,7 +64,7 @@ public class ServerThread implements Runnable {
public void start() {
ticker.start();
executor.scheduleAtFixedRate(this, 0, 1000 / 47, TimeUnit.MILLISECONDS);
executor.scheduleAtFixedRate(this, 0, 1000 / 20, TimeUnit.MILLISECONDS);
}
@Override