From d4f542c64b01aec0b384f3afc4f804c59ee23e10 Mon Sep 17 00:00:00 2001 From: MingxuanGame Date: Mon, 25 Aug 2025 01:15:34 +0800 Subject: [PATCH] chore(score): change pp limit to 3000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 没有人类了. --- app/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/calculator.py b/app/calculator.py index cc76c0e..897d727 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -112,7 +112,7 @@ async def calculate_pp(score: "Score", beatmap: str, session: AsyncSession) -> f pp = attrs.pp # mrekk bp1: 2048pp; ppy-sb top1 rxbp1: 2198pp - if settings.suspicious_score_check and ((attrs.difficulty.stars > 25 and score.accuracy < 0.8) or pp > 2300): + if settings.suspicious_score_check and ((attrs.difficulty.stars > 25 and score.accuracy < 0.8) or pp > 3000): logger.warning( f"User {score.user_id} played {score.beatmap_id} " f"(star={attrs.difficulty.stars}) with {pp=} "