We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cfd8c3 commit 68ad756Copy full SHA for 68ad756
1.7.10/src/club/moddedminecraft/tpsmod/bukkitplugin/TickRunnable.java
@@ -24,7 +24,7 @@ public void run() {
24
lastRecalculate = currentTime;
25
} else {
26
long elapsed = System.currentTimeMillis() - lastRecalculate;
27
- if (elapsed >= 10 * 1000) {
+ if (elapsed >= 60 * 10 * 1000) {
28
double tps = ((double) tickCount) / (elapsed / 1000.0);
29
Thread postThread = new Thread(new HttpPoster(logger, config, tps));
30
postThread.start();
0 commit comments