mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
Merge pull request #60 from FunkinCrew/charter-bugs
score fix for ravy teehe
This commit is contained in:
commit
9403eb4957
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue