We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f084077 commit 134421fCopy full SHA for 134421f
Themes/Rebirth/BGAnimations/ScreenEvaluation decorations/scoreBoard.lua
@@ -227,7 +227,11 @@ local function scoreList()
227
-- particularly for scores that dont actually exist in your profile, like online replays
228
-- in those cases, we put the mostRecentScore into its own fallback table
229
-- mostRecentScore will never be nil. if it is, the game actually crashes before it gets here.
230
- scores = scoresByRate[getRate(mostRecentScore)] or {mostRecentScore}
+ if scoresByRate == nil then
231
+ scores = {}
232
+ else
233
+ scores = scoresByRate[getRate(mostRecentScore)] or {mostRecentScore}
234
+ end
235
end
236
else
237
local steps = GAMESTATE:GetCurrentSteps()
0 commit comments