Skip to content

Commit 080f23d

Browse files
committed
Disabled the rule check kicker as it's not required
1 parent 8f04efa commit 080f23d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/watcher/java/com/mcmoddev/mmdbot/watcher/TheWatcher.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
import com.mcmoddev.mmdbot.watcher.event.PersistedRolesEvents;
5252
import com.mcmoddev.mmdbot.watcher.punishments.PunishableActions;
5353
import com.mcmoddev.mmdbot.watcher.punishments.Punishment;
54-
import com.mcmoddev.mmdbot.watcher.rules.RuleAgreementChecker;
5554
import com.mcmoddev.mmdbot.watcher.rules.RuleCommand;
5655
import com.mcmoddev.mmdbot.watcher.rules.UpdateRulesCommand;
5756
import com.mcmoddev.mmdbot.watcher.util.BotConfig;
@@ -199,8 +198,8 @@ public TheWatcher(final Path runPath, final Dotenv dotenv) {
199198
public void start() {
200199
instance = this;
201200
oldConfig = new BotConfig(runPath.resolve("old_config.toml"));
202-
Events.MISC_BUS.addListener((final TaskScheduler.CollectTasksEvent event) -> event.addTask(new RuleAgreementChecker(this::getJda),
203-
0, 1, TimeUnit.DAYS));
201+
//Events.MISC_BUS.addListener((final TaskScheduler.CollectTasksEvent event) -> event.addTask(new RuleAgreementChecker(this::getJda),
202+
//0, 1, TimeUnit.DAYS));
204203

205204
try {
206205
final var configPath = runPath.resolve("config.conf");

0 commit comments

Comments
 (0)