From 8acf2e6225c47e53c4ba65b00043ec366faad713 Mon Sep 17 00:00:00 2001 From: IdealistCat <113909588+IdealistCat@users.noreply.github.com> Date: Mon, 19 Aug 2024 08:24:02 -0500 Subject: [PATCH] Legacy Revert --- source/funkin/play/scoring/Scoring.hx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'; } }