right after not compiling, I didn't test gf + notes

This commit is contained in:
Lucky56 2021-06-11 17:26:25 +02:00
parent 105ccaf38a
commit 9425a74285
No known key found for this signature in database
GPG Key ID: 19E3875EAD1F8B8F

View File

@ -59,7 +59,14 @@ class Note extends FlxSprite
var daStage:String = PlayState.curStage;
switch (PlayState.SONG.noteStyle)
//defaults if no noteStyle was found in chart
var noteTypeCheck:String = 'normal';
if (PlayState.SONG.noteStyle == null) {
switch(storyWeek) { case 6: noteTypeCheck = 'pixel'; }
} else {noteTypeCheck = SONG.noteStyle;}
switch (noteTypeCheck)
{
case 'pixel':
loadGraphic(Paths.image('weeb/pixelUI/arrows-pixels','week6'), true, 17, 17);