From 563820fe93cf1f005aadd462ec55fcbb2667eb99 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Mon, 17 Nov 2025 07:11:10 -0600 Subject: [PATCH] Remove debug print from is_game_over() causing stdout spam MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: The is_game_over() function contained a debug print statement that was printing "1: " to stdout on every call. This was causing massive log spam in Docker container output (thousands of lines) and making it difficult to diagnose actual issues. Fix: Remove the print(f'1: ') statement from line 3251. Bumps version to 1.7.4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- VERSION | 2 +- command_logic/logic_gameplay.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/VERSION b/VERSION index bbf649f..10c0880 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.3 \ No newline at end of file +1.7.4 diff --git a/command_logic/logic_gameplay.py b/command_logic/logic_gameplay.py index 58fc898..0cf0979 100644 --- a/command_logic/logic_gameplay.py +++ b/command_logic/logic_gameplay.py @@ -3248,7 +3248,6 @@ async def show_defense_cards(session: Session, interaction: discord.Interaction, def is_game_over(this_play: Play) -> bool: - print(f'1: ') if this_play.inning_num < 9 and (abs(this_play.away_score - this_play.home_score) < 10): return False