From 6fdd5b55100c5d53bde51075bcc6546c2c5c29cb Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Thu, 18 Apr 2024 01:22:29 -0400 Subject: [PATCH] make scoreboard index accurate on other pages of scores --- menus/scoreboards.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/menus/scoreboards.gd b/menus/scoreboards.gd index 2fd71db..ead6d13 100644 --- a/menus/scoreboards.gd +++ b/menus/scoreboards.gd @@ -70,6 +70,7 @@ func reload_scores() -> void: var retrieved_scores = response.result.data.scores for i in scores.get_child_count(): var score_entry = scores.get_child(i) + score_entry.place = _page * 8 + i + 1 if i < retrieved_scores.size(): var score = retrieved_scores[i] score_entry.user = score.user.name