diff --git a/source/funkin/play/scoring/Scoring.hx b/source/funkin/play/scoring/Scoring.hx index dc2c406475..ccde5c5dc9 100644 --- a/source/funkin/play/scoring/Scoring.hx +++ b/source/funkin/play/scoring/Scoring.hx @@ -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; } } @@ -65,6 +66,7 @@ class Scoring case PBOT1: judgeNotePBOT1(msTiming); default: FlxG.log.error('Unknown scoring system: ${scoringSystem}'); + judgeNoteLEGACY(msTiming); 'miss'; } }