From 7ea11061f60999a48b2c97b64ed2fd504f7d0c63 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 12 Nov 2025 01:47:10 -0800 Subject: Update taiko_donder_hiroba_export.py --- taiko_donder_hiroba_export.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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] -- cgit v1.2.3