From 8efe0a3a947e498423dd7ee8f8a1f2b96671809f Mon Sep 17 00:00:00 2001 From: akanyan Date: Thu, 27 Jun 2024 08:28:14 +0900 Subject: [PATCH] fix: remove an obsolete check --- NaiveRating/MU3/NaiveRating.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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