refactor: make TagPlugin interval do every 30 seconds instead of 20 seconds
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user