mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
score fix for ravy teehe
This commit is contained in:
parent
bf7a42d143
commit
f32330914e
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue