More fixes for scoreboard.

This commit is contained in:
Storm Dragon 2025-03-15 19:06:29 -04:00
parent af38d5af76
commit 23aea6badf

View File

@ -37,7 +37,7 @@ class Scoreboard:
try: try:
# Try to use configService # Try to use configService
self.configService.local_config.add_section("scoreboard") self.configService.localConfig.add_section("scoreboard")
except: except:
# Fallback to old method # Fallback to old method
try: try:
@ -49,8 +49,8 @@ class Scoreboard:
for i in range(1, 11): for i in range(1, 11):
try: try:
# Try to use configService # Try to use configService
score = self.configService.local_config.getint("scoreboard", f"score_{i}") score = self.configService.localConfig.getint("scoreboard", f"score_{i}")
name = self.configService.local_config.get("scoreboard", f"name_{i}") name = self.configService.localConfig.get("scoreboard", f"name_{i}")
self.highScores.append({ self.highScores.append({
'name': name, 'name': name,
'score': score 'score': score
@ -77,7 +77,7 @@ class Scoreboard:
"""Get current score.""" """Get current score."""
return self.currentScore return self.currentScore
def get_highScores(self): def get_high_scores(self):
"""Get list of high scores.""" """Get list of high scores."""
return self.highScores return self.highScores
@ -146,8 +146,8 @@ class Scoreboard:
try: try:
# Try new method first # Try new method first
for i, entry in enumerate(self.highScores): for i, entry in enumerate(self.highScores):
self.configService.local_config.set("scoreboard", f"score_{i+1}", str(entry['score'])) self.configService.localConfig.set("scoreboard", f"score_{i+1}", str(entry['score']))
self.configService.local_config.set("scoreboard", f"name_{i+1}", entry['name']) self.configService.localConfig.set("scoreboard", f"name_{i+1}", entry['name'])
# Try to write with configService # Try to write with configService
try: try: