From 9b3b126e616da5908ebfaa87ef6c4012be82dd23 Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 20 Jun 2024 11:52:56 +0200 Subject: [PATCH] Disable mensa task as a quick fix --- lib/registry.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/registry.ts b/lib/registry.ts index a9a4dd9..b10f86d 100644 --- a/lib/registry.ts +++ b/lib/registry.ts @@ -8,7 +8,6 @@ import mensaCommand from "../modules/mensa/mensaCommand"; import truthtableCommand from "../modules/truthtable/truthtableCommand"; import voteCommand from "../modules/vote/voteCommand"; -import mensaTask from "../modules/mensa/mensaTask"; import aocTask from "../modules/aoc/aocTask"; import attendanceTrackerTask from "../modules/attendancetracker/attendanceTrackerTask"; import koeriSelectionMenu from "../modules/koeri/koeriSelectionMenuListener"; @@ -21,12 +20,14 @@ export const SLASH_COMMANDS: ISlashCommand[] = [ export const TASKS = [ // Mensa-Plans - new UniversityDayRecurringTask(Weekday.MONDAY, 9, 48, mensaTask), - new UniversityDayRecurringTask(Weekday.TUESDAY, 9, 48, mensaTask), - new UniversityDayRecurringTask(Weekday.WEDNESDAY, 9, 48, mensaTask), - new UniversityDayRecurringTask(Weekday.THURSDAY, 9, 48, mensaTask), - new UniversityDayRecurringTask(Weekday.FRIDAY, 9, 48, mensaTask), + /* + * new UniversityDayRecurringTask(Weekday.MONDAY, 9, 48, mensaTask), + * new UniversityDayRecurringTask(Weekday.TUESDAY, 9, 48, mensaTask), + * new UniversityDayRecurringTask(Weekday.WEDNESDAY, 9, 48, mensaTask), + * new UniversityDayRecurringTask(Weekday.THURSDAY, 9, 48, mensaTask), + * new UniversityDayRecurringTask(Weekday.FRIDAY, 9, 48, mensaTask), + */ // Advent of Code new RecurringTask(Weekday.MONDAY, 22, 5, aocTask),