fix: return fc+ on batch manual correctly

This commit is contained in:
Raymond
2026-08-03 16:08:38 -04:00
committed by GitHub
parent 05e613d667
commit 7eab79e48d

View File

@@ -155,12 +155,12 @@
let lamp = null;
if (score.isAllPerfect) {
lamp = "ALL PERFECT";
if (score.percent == 101.0) {
if (score.percent >= 101.0) {
lamp = "ALL PERFECT+";
}
} else if (score.isFullCombo) {
lamp = "FULL COMBO";
if (good == 0 && great == 0) {
if (!good) {
lamp = "FULL COMBO+";
}
} else if (score.isClear) {