fix: remove an obsolete check

This commit is contained in:
あかニャン 2024-06-27 08:28:14 +09:00
parent 5bd9b5ae70
commit 8efe0a3a94

View File

@ -51,8 +51,6 @@ public static class NaiveRating {
foreach(Rating best in calcSane().Take(45)) { foreach(Rating best in calcSane().Take(45)) {
res += best.rate100; res += best.rate100;
} }
return res > 0 return res / 45;
? res / 45
: Singleton<UserManager>.instance.Rating;
} }
} }