fix(score): cannot get pp in osu, taiko, catch with HR

This commit is contained in:
MingxuanGame
2025-08-10 05:05:30 +00:00
parent d9cf522f40
commit 703a7901b3

View File

@@ -1,5 +1,6 @@
from __future__ import annotations from __future__ import annotations
from copy import deepcopy
import json import json
from typing import Literal, NotRequired, TypedDict from typing import Literal, NotRequired, TypedDict
@@ -129,10 +130,10 @@ COMMON_CONFIG: dict[str, dict] = {
} }
RANKED_MODS: dict[int, dict[str, dict]] = { RANKED_MODS: dict[int, dict[str, dict]] = {
0: COMMON_CONFIG, 0: deepcopy(COMMON_CONFIG),
1: COMMON_CONFIG, 1: deepcopy(COMMON_CONFIG),
2: COMMON_CONFIG, 2: deepcopy(COMMON_CONFIG),
3: COMMON_CONFIG, 3: deepcopy(COMMON_CONFIG),
} }
# osu # osu
RANKED_MODS[0]["HD"]["only_fade_approach_circles"] = False RANKED_MODS[0]["HD"]["only_fade_approach_circles"] = False