Skip to content

Commit

Permalink
Merge pull request #183 from beanbeanjuice/180-increase-channel-topic…
Browse files Browse the repository at this point in the history
…-timer

Updated the Channel Topic Updater to 10 Minutes
  • Loading branch information
beanbeanjuice committed Jun 18, 2024
2 parents 479df70 + 8666ef3 commit 9e3e7f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void onEnable() {
.count();

discordBot.channelUpdaterFunction(numPlayers);
}, 5, 5, TimeUnit.MINUTES);
}, 10, 10, TimeUnit.MINUTES);

// Update Checker
startUpdateChecker();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ public void onProxyInitialization(ProxyInitializeEvent event) {

discordBot.channelUpdaterFunction(numPlayers);
})
.delay(5, TimeUnit.MINUTES)
.repeat(5, TimeUnit.MINUTES)
.delay(10, TimeUnit.MINUTES)
.repeat(10, TimeUnit.MINUTES)
.schedule();

// Start Update Checker
Expand Down

0 comments on commit 9e3e7f7

Please sign in to comment.