Scoreboard still not saving past the first position.

This commit is contained in:
Storm Dragon 2020-08-30 02:00:07 -04:00
parent ae93e02e69
commit dd350c0285

View File

@ -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