Add Party and Classic mode selection#150
Conversation
|
Claude finished @tim4724's task in 7m 42s —— View job Code Review — Add Party and Classic mode selection
Findings🔴 Bug — False "Score saved locally" when score doesn't make the top 10
scores = scores.slice(0, CLASSIC_MAX_SCORES); // entry excluded if rank > 10
writeClassicScores(scores);
return rank > 0 && rank <= CLASSIC_MAX_SCORES ? rank : null;When the leaderboard already has 10 entries and the new score ranks 11th, classicResultPanel.textContent = rank
? t('classic_new_score', { rank: rank })
: t('classic_score_saved'); // ← shows "Score saved locally" even though it wasn'tFix options:
🟡 Inconsistency —
|
Summary
Verification