Skip to content

Commit f59d26a

Browse files
committed
Fix cron
1 parent 410b70e commit f59d26a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service/cron.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const cron = (pattern: string, callback: ConstructorParameters<typeof Cron>[1])
3232

3333
export async function schedule(context: BotContext) {
3434
cron("1 0 * * *", () => checkBirthdays(context));
35-
cron("0 20 1-25 12 *", () => publishAocLeaderBoard(context));
35+
cron("0 20 1-12 12 *", () => publishAocLeaderBoard(context));
3636
cron("0 0 * * 0", () => rerollNicknames(context));
3737
cron("36 0-23 * * FRI-SUN", () => connectAndPlaySaufen(context));
3838
cron("* * * * *", () => reminderHandler(context));

0 commit comments

Comments
 (0)