From 183eb75bbafaa3ce2199470ed452c92ad7ee1e9e Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Sun, 4 Jan 2026 10:54:30 -0500 Subject: [PATCH] minor bug fix --- config.toml | 2 +- scenes/game.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.toml b/config.toml index c28f1d4..23284dc 100644 --- a/config.toml +++ b/config.toml @@ -2,7 +2,7 @@ fps_counter = false audio_offset = 0 visual_offset = 0 -language = "ja" +language = "en" timer_frozen = true judge_counter = false nijiiro_notes = false diff --git a/scenes/game.py b/scenes/game.py index c4525af..b6bacb0 100644 --- a/scenes/game.py +++ b/scenes/game.py @@ -171,7 +171,7 @@ class GameScreen(Screen): existing_score = result[0] if result is not None else None existing_crown = result[1] if result is not None and len(result) > 1 and result[1] is not None else 0 crown = Crown.NONE - if session_data.result_data.bad and session_data.result_data.ok == 0: + if session_data.result_data.bad == 0 and session_data.result_data.ok == 0: crown = Crown.DFC elif session_data.result_data.bad == 0: crown = Crown.FC