Skip to content

Commit 68ad756

Browse files
committed
change interval to 10 minutes
1 parent 3cfd8c3 commit 68ad756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.7.10/src/club/moddedminecraft/tpsmod/bukkitplugin/TickRunnable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void run() {
2424
lastRecalculate = currentTime;
2525
} else {
2626
long elapsed = System.currentTimeMillis() - lastRecalculate;
27-
if (elapsed >= 10 * 1000) {
27+
if (elapsed >= 60 * 10 * 1000) {
2828
double tps = ((double) tickCount) / (elapsed / 1000.0);
2929
Thread postThread = new Thread(new HttpPoster(logger, config, tps));
3030
postThread.start();

0 commit comments

Comments
 (0)