From f32330914e135a23b9dc80f4a57bc7a497556cb5 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Thu, 9 Mar 2023 12:39:56 -0500 Subject: [PATCH] score fix for ravy teehe --- source/funkin/play/PlayState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index 774f5debc..401a6e7c3 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -1995,7 +1995,7 @@ class PlayState extends MusicBeatState healthMulti *= 0; // no health on shit note daRating = 'shit'; Highscore.tallies.shit += 1; - score = 50; + // score = 50; } else if (noteDiff > Note.HIT_WINDOW * Note.GOOD_THRESHOLD) { @@ -2008,7 +2008,7 @@ class PlayState extends MusicBeatState healthMulti *= 0.78; daRating = 'good'; Highscore.tallies.good += 1; - score = 200; + // score = 200; } else {