diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-11-12 01:47:10 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-12 01:47:10 -0800 |
| commit | 7ea11061f60999a48b2c97b64ed2fd504f7d0c63 (patch) | |
| tree | 54e9e7c3a4270239f76391be157134e1c409abf1 | |
| parent | e70b442414de9d33257110f1e1376caeda2b8e63 (diff) | |
Update taiko_donder_hiroba_export.pyv1.0
| -rw-r--r-- | taiko_donder_hiroba_export.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/taiko_donder_hiroba_export.py b/taiko_donder_hiroba_export.py index 41345e5..354777d 100644 --- a/taiko_donder_hiroba_export.py +++ b/taiko_donder_hiroba_export.py @@ -134,7 +134,10 @@ def get_play_hist(token: str, chart_data): if src in DIFFICULTY_MAP: difficulty = DIFFICULTY_MAP[src] elif src in CROWN_MAP: - crown = CROWN_MAP[src] + if src not in CROWN_MAP: + crown = "NOT CLEAR" + else: + crown = CROWN_MAP[src] elif src in LAMP_MAP: lamp = LAMP_MAP[src] |
