Skip to content

Commit

Permalink
Disable mensa task as a quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c0derMo committed Jun 20, 2024
1 parent dd9def6 commit 9b3b126
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions lib/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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),
Expand Down

0 comments on commit 9b3b126

Please sign in to comment.