1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00

Merge pull request #60 from FunkinCrew/charter-bugs

score fix for ravy teehe
This commit is contained in:
Cameron Taylor 2023-03-09 12:43:04 -05:00 committed by GitHub
commit 9403eb4957

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
{