From af38d5af769b67ebfcb7336f9bef3869b6ad9423 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 15 Mar 2025 18:41:35 -0400 Subject: [PATCH] Fixed another error in scoreboard. --- scoreboard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scoreboard.py b/scoreboard.py index a34cea4..9b13ddd 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -121,7 +121,7 @@ class Scoreboard: Returns: bool: True if score was added, False if not """ - position = self.checkHighScore() + position = self.check_high_score() if position is None: return False @@ -211,7 +211,7 @@ class Scoreboard: configService.read_local_config() # Get high scores - scores = board.getHighScores() + scores = board.get_high_scores() # Check if any score is greater than zero return any(score['score'] > 0 for score in scores) @@ -246,7 +246,7 @@ class Scoreboard: configService.read_local_config() # Get high scores - scores = board.getHighScores() + scores = board.get_high_scores() # Filter out scores with zero points validScores = [score for score in scores if score['score'] > 0]