Fixed a bug with score sorting.
This commit is contained in:
parent
97431c0c74
commit
6d2c6e04d8
@ -61,12 +61,12 @@ class Scoreboard:
|
||||
read_config()
|
||||
self.currentScore = score
|
||||
self.highScores = []
|
||||
|
||||
|
||||
try:
|
||||
localConfig.add_section("scoreboard")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
# Load existing high scores
|
||||
for i in range(1, 11):
|
||||
try:
|
||||
@ -81,6 +81,9 @@ class Scoreboard:
|
||||
'name': "Player",
|
||||
'score': 0
|
||||
})
|
||||
|
||||
# Sort high scores by score value in descending order
|
||||
self.highScores.sort(key=lambda x: x['score'], reverse=True)
|
||||
|
||||
def get_score(self):
|
||||
"""Get current score."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user