Return TPS to 20

yeah
This commit is contained in:
opfromthestart 2021-04-16 21:26:57 -04:00
parent 5c57a57e9a
commit f9aae94bbc

View File

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