From d44fdd44628554519744a2a59fcbeef5a8327ebd Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 23 Feb 2025 20:03:12 -0800 Subject: [PATCH] Update hamtest.py --- modules/games/hamtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/games/hamtest.py b/modules/games/hamtest.py index 463c5f6..f547512 100644 --- a/modules/games/hamtest.py +++ b/modules/games/hamtest.py @@ -124,14 +124,14 @@ class HamTest: passing = 26 if score >= passing: - msg = f"Game over. Score: {score} 73! You passed the {level} exam." + msg = f"Game over. Score: {score} 73! 🎉You passed the {level} exam." else: # find the most common section of the questions missed if self.game[id]['errors']: areaofstudy = max(set(self.game[id]['errors']), key = self.game[id]['errors'].count) else: areaofstudy = "None" - msg = f"Game over. Score: {score} 73! You did not pass the {level} exam. \nYou may want to study {areaofstudy}." + msg = f"Game over. Score: {score} 73! 😿You did not pass the {level} exam. \nYou may want to study {areaofstudy}." # remove the game[id] from the list del self.game[id]