We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 410b70e commit f59d26aCopy full SHA for f59d26a
src/service/cron.ts
@@ -32,7 +32,7 @@ const cron = (pattern: string, callback: ConstructorParameters<typeof Cron>[1])
32
33
export async function schedule(context: BotContext) {
34
cron("1 0 * * *", () => checkBirthdays(context));
35
- cron("0 20 1-25 12 *", () => publishAocLeaderBoard(context));
+ cron("0 20 1-12 12 *", () => publishAocLeaderBoard(context));
36
cron("0 0 * * 0", () => rerollNicknames(context));
37
cron("36 0-23 * * FRI-SUN", () => connectAndPlaySaufen(context));
38
cron("* * * * *", () => reminderHandler(context));
0 commit comments