1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-29 10:13:32 +00:00

score fix for ravy teehe

This commit is contained in:
Cameron Taylor 2023-03-09 12:39:56 -05:00
parent bf7a42d143
commit f32330914e

View file

@ -1995,7 +1995,7 @@ class PlayState extends MusicBeatState
healthMulti *= 0; // no health on shit note healthMulti *= 0; // no health on shit note
daRating = 'shit'; daRating = 'shit';
Highscore.tallies.shit += 1; Highscore.tallies.shit += 1;
score = 50; // score = 50;
} }
else if (noteDiff > Note.HIT_WINDOW * Note.GOOD_THRESHOLD) else if (noteDiff > Note.HIT_WINDOW * Note.GOOD_THRESHOLD)
{ {
@ -2008,7 +2008,7 @@ class PlayState extends MusicBeatState
healthMulti *= 0.78; healthMulti *= 0.78;
daRating = 'good'; daRating = 'good';
Highscore.tallies.good += 1; Highscore.tallies.good += 1;
score = 200; // score = 200;
} }
else else
{ {