From 33b2033cc365e611e00b81ff748b7e3c0e0d5571 Mon Sep 17 00:00:00 2001 From: koko210Serve Date: Wed, 15 Apr 2026 12:26:09 +0300 Subject: [PATCH] fix: clarify angry_wakeup_timer intent with TODO comment (Phase E Step 20) - Change misleading 'Unused, kept for structural completeness' to 'TODO: implement angry-wakeup mechanic or remove field' - Field is dead code: never read or written in any Python code --- bot/server_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/server_manager.py b/bot/server_manager.py index e614aa5..2605174 100644 --- a/bot/server_manager.py +++ b/bot/server_manager.py @@ -39,7 +39,7 @@ class ServerConfig: previous_mood_name: str = "neutral" is_sleeping: bool = False sleepy_responses_left: Optional[int] = None - angry_wakeup_timer: Optional[float] = None # Unused, kept for structural completeness + angry_wakeup_timer: Optional[float] = None # TODO: implement angry-wakeup mechanic or remove field forced_angry_until: Optional[str] = None # ISO format datetime string, or None just_woken_up: bool = False