Skip to content

Commit

Permalink
removed arbitrary filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
Givikap120 committed Aug 31, 2024
1 parent 9acd859 commit 5f912bf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public LazerCalculationSettings()

public bool ShouldBeFiltered(ScoreInfo score)
{
if (score.Mods.Any(h => h is OsuModAutopilot))
return true;

if (score.BeatmapInfo == null)
return true;

Expand Down
4 changes: 0 additions & 4 deletions PerformanceCalculatorGUI/Screens/ProfileScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -489,10 +489,6 @@ private void calculateProfileFromLazer(string username)
currentScoresCount++;
// Sanity check for aspire maps till slider fix won't get merged
if (difficultyAttributes.StarRating > 14 && !score.BeatmapInfo.Status.GrantsPerformancePoints())
continue;
tempScores.Add(new ProfileScore(score, perfAttributes));
}
Expand Down

0 comments on commit 5f912bf

Please sign in to comment.