refactor: make TagPlugin interval do every 30 seconds instead of 20 seconds
This commit is contained in:
parent
dc023758f2
commit
65bae4ce7d
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ public class TagPlugin extends CorePlugin.Listener {
|
|||
public TagPlugin (Bot bot) {
|
||||
this.bot = bot;
|
||||
|
||||
bot.executor.scheduleAtFixedRate(this::runCommand, 5, 20, TimeUnit.SECONDS);
|
||||
bot.executor.scheduleAtFixedRate(this::runCommand, 5, 30, TimeUnit.SECONDS);
|
||||
}
|
||||
|
||||
private void runCommand () {
|
||||
|
|
Loading…
Reference in a new issue