refactor: change tag interval to 2 minutes

This commit is contained in:
ChomeNS
2024-12-04 19:07:00 +07:00
parent 4ef6e334b0
commit 20cd93a826

View File

@@ -13,7 +13,7 @@ public class TagPlugin extends CorePlugin.Listener {
public TagPlugin (Bot bot) {
this.bot = bot;
bot.executor.scheduleAtFixedRate(this::runCommand, 5, 30, TimeUnit.SECONDS);
bot.executor.scheduleAtFixedRate(this::runCommand, 1, 2, TimeUnit.MINUTES);
}
private void runCommand () {