From dd350c02851a680a4e96c51ce1a8305981b43669 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 30 Aug 2020 02:00:07 -0400 Subject: [PATCH] Scoreboard still not saving past the first position. --- libstormgames.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libstormgames.py b/libstormgames.py index e542d16..58617d5 100755 --- a/libstormgames.py +++ b/libstormgames.py @@ -42,7 +42,7 @@ class scoreboard(): try: localConfig.add_section("scoreboard") except: - speak("Could not create scoreboard.") + pass self.score = startingScore self.oldScores = [] for i in range(1, 11): @@ -60,7 +60,7 @@ class scoreboard(): try: write_config() except: - speak("Could not update configuration file." + pass def Decrease_Score(self, points = 1): self.score -= points