From 8e274731c5f25cc32e2f319aae9a802108351771 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 5 Mar 2025 13:36:08 -0500 Subject: [PATCH] Change congratulations message to use messagebox so the speech doesn't get chopped. --- scoreboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoreboard.py b/scoreboard.py index 2cbc608..bdab19d 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -125,7 +125,7 @@ class Scoreboard: # Force window refresh after dialog self.game.display.window.dispatch_events() - self.game.speech.speak(f"Congratulations {name}! You got position {position} on the scoreboard!") + self.game.display.messagebox(f"Congratulations {name}! You got position {position} on the scoreboard!") time.sleep(1) # Make sure window is still responsive