Replay with 'broken' charts now fully fixed

This commit is contained in:
Lucky56
2021-06-11 19:08:48 +02:00
parent 9425a74285
commit 0dc5ff5df5
3 changed files with 4 additions and 4 deletions

View File

@ -102,7 +102,7 @@ class LoadReplayState extends MusicBeatState
for (i in 0...songs.length)
{
var pog:FreeplayState.SongMetadata = songs[i];
if (pog.songName.toLowerCase() == songName)
if (pog.songName == songName)
week = pog.week;
}
return week;

View File

@ -63,8 +63,8 @@ class Note extends FlxSprite
var noteTypeCheck:String = 'normal';
if (PlayState.SONG.noteStyle == null) {
switch(storyWeek) { case 6: noteTypeCheck = 'pixel'; }
} else {noteTypeCheck = SONG.noteStyle;}
switch(PlayState.storyWeek) {case 6: noteTypeCheck = 'pixel';}
} else {noteTypeCheck = PlayState.SONG.noteStyle;}
switch (noteTypeCheck)
{

View File

@ -1517,7 +1517,7 @@ class PlayState extends MusicBeatState
var noteTypeCheck:String = 'normal';
if (SONG.noteStyle == null) {
switch(storyWeek) { case 6: noteTypeCheck = 'pixel'; }
switch(storyWeek) {case 6: noteTypeCheck = 'pixel';}
} else {noteTypeCheck = SONG.noteStyle;}
switch (noteTypeCheck)