Change default update check to 12 hours

This commit is contained in:
libraryaddict 2021-01-08 16:55:07 +13:00
parent e6e43ee92c
commit 48297555f7

View File

@ -343,7 +343,7 @@ public class DisguiseConfig {
return;
}
int timer = (int) (TimeUnit.HOURS.toSeconds(isHittingRateLimit() ? 36 : 6) * 20);
int timer = (int) (TimeUnit.HOURS.toSeconds(isHittingRateLimit() ? 36 : 12) * 20);
// Get the ticks since last update
long timeSinceLast = (System.currentTimeMillis() - getLastUpdateRequest()) / 50;