1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +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
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
{