fix: Simplify win status message in generate_board_image function

This commit is contained in:
Slipstream 2025-05-28 12:34:16 -06:00
parent 2a4d097c2e
commit 49800bc626
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -294,7 +294,7 @@ def generate_board_image(game: WordleGame, used_letters: Set[str] = None) -> dis
# Add game result if game is over
if game.game_over:
if game.won:
status_text += f" - You won! The word was {game.word.upper()}."
status_text += f" - You won!"
else:
status_text += f" - Game over! The word was {game.word.upper()}."