Skip to content

Commit

Permalink
Revert "also ignore 0.0 ssr scores when requesting chart leaderboard"
Browse files Browse the repository at this point in the history
This reverts commit 00a44af.
  • Loading branch information
MinaciousGrace committed Jul 19, 2018
1 parent 919ab7f commit daa0f72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/DownloadManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -992,9 +992,8 @@ void DownloadManager::RequestChartLeaderBoard(string chartkey)
}

// eo still has some old profiles with various edge issues that unfortunately need to be handled here
// screen out old 11111 flags (my greatest mistake) and it's probably a safe bet to throw out below 25% scores
// pruning 0.0 ssr dead scores will also stop mod file scores from showing up.. acceptable for now -mina
if (tmp.wife > 1.f || tmp.wife < 0.25f || !tmp.valid || tmp.SSRs[Skill_Overall]);
// screen out old 11111 flags (my greatest mistake) and it's probably a safe bet to throw out below 25% scores -mina
if (tmp.wife > 1.f || tmp.wife < 0.25f || !tmp.valid)
continue;

// it seems prudent to maintain the eo functionality in this way and screen out multiple scores from the same user
Expand Down

0 comments on commit daa0f72

Please sign in to comment.