diff --git a/libstormgames.py b/libstormgames.py index ed84171..a3597e8 100755 --- a/libstormgames.py +++ b/libstormgames.py @@ -83,6 +83,9 @@ class scoreboard(): # Update the scores for i, j in enumerate(self.oldScores): if self.score > j: + # Move the old high score down the list + if i < 10: + self.oldScores[i + 1] = j self.oldScores[i] = self.score break # Update the scoreboard section of the games config file.