From b7a88844b6db9662e85426f8244fad9577d68ffc Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sun, 22 Feb 2026 16:20:08 -0600 Subject: [PATCH] feat: include current week number in weekly-info channel post The #weekly-info message already shows season and game times but not which week it is, making managers check elsewhere for that context. Co-Authored-By: Claude Opus 4.6 --- tasks/transaction_freeze.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/transaction_freeze.py b/tasks/transaction_freeze.py index c14684b..d952f7d 100644 --- a/tasks/transaction_freeze.py +++ b/tasks/transaction_freeze.py @@ -922,6 +922,7 @@ class TransactionFreezeTask: is_div_week = current.week in [1, 3, 6, 14, 16, 18] weekly_str = ( + f"**Week**: {current.week}\n" f"**Season**: {season_str}\n" f"**Time of Day**: {night_str} / {night_str if is_div_week else day_str} / " f"{night_str} / {day_str}"