Skip to content

Commit

Permalink
Legacy Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
sphis-Sinco authored Aug 19, 2024
1 parent 9b483de commit 8acf2e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/funkin/play/scoring/Scoring.hx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ class Scoring
case WEEK7: scoreNoteWEEK7(msTiming);
case PBOT1: scoreNotePBOT1(msTiming);
default:
FlxG.log.error('Unknown scoring system: ${scoringSystem}');
FlxG.log.error('Unknown scoring system: ${scoringSystem}, reverting to Legacy.');
scoreNoteLEGACY(msTiming);
0;
}
}
Expand All @@ -65,6 +66,7 @@ class Scoring
case PBOT1: judgeNotePBOT1(msTiming);
default:
FlxG.log.error('Unknown scoring system: ${scoringSystem}');
judgeNoteLEGACY(msTiming);
'miss';
}
}
Expand Down

0 comments on commit 8acf2e6

Please sign in to comment.