diff --git a/NaiveRating/MU3/NaiveRating.cs b/NaiveRating/MU3/NaiveRating.cs index 94afeaf..974f55d 100644 --- a/NaiveRating/MU3/NaiveRating.cs +++ b/NaiveRating/MU3/NaiveRating.cs @@ -51,8 +51,6 @@ public static class NaiveRating { foreach(Rating best in calcSane().Take(45)) { res += best.rate100; } - return res > 0 - ? res / 45 - : Singleton.instance.Rating; + return res / 45; } } \ No newline at end of file