Skip to content

Commit

Permalink
Increase delay again to reduce overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHorkles committed Apr 13, 2024
1 parent 093e66f commit 0a2df70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void onEnable() {

if (latest == null) return;
if (!current.equals(latest)) new BungeeUpdateChecker(instance).logUpdate(current, latest);
}, 200L, TimeUnit.MILLISECONDS);
}, 500L, TimeUnit.MILLISECONDS);

cleanFiles();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void run() {
if (latest == null) return;
if (!current.equals(latest)) new SpigotUpdateChecker(instance).logUpdate(current, latest);
}
}.runTaskLaterAsynchronously(this, 4L);
}.runTaskLaterAsynchronously(this, 10L);

cleanFiles();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void onProxyInitialize(ProxyInitializeEvent event) {

if (latest == null) return;
if (!current.equals(latest)) new VelocityUpdateChecker(instance).logUpdate(current, latest);
}).delay(200L, TimeUnit.MILLISECONDS).schedule();
}).delay(500L, TimeUnit.MILLISECONDS).schedule();
}

public void loadConfig() {
Expand Down

0 comments on commit 0a2df70

Please sign in to comment.