Send back the HighScoreList for quint determination

This can already be fetched via a profile, but this is way more convenient since it's already here.
This commit is contained in:
teejusb
2025-03-21 02:15:41 -07:00
parent 9f5a4eba42
commit ec9fc78469
+5
View File
@@ -383,6 +383,11 @@ void MusicWheelItem::RefreshGrades()
{
msg.SetParam( "Grade", pHSL->HighGrade );
msg.SetParam( "NumTimesPlayed", pHSL->GetNumTimesPlayed() );
// Until we get a Grade for quints (need W0 support), send back the entire
// HighScoreList so we can determine if a player has a quint or not.
// TODO: Remove this once we have W0 support.
msg.SetParam( "HighScoreList", pHSL );
}
m_pGradeDisplay[p]->HandleMessage( msg );
}