Skip to content

Commit

Permalink
More fix
Browse files Browse the repository at this point in the history
  • Loading branch information
poec987 committed Jun 27, 2024
1 parent 0a99caf commit 7f2e19c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1065,6 +1065,7 @@ class PlayState extends MusicBeatState

var introAssets:Map<String, Array<String>> = new Map<String, Array<String>>();
introAssets.set('default', ['ready', "set", "go"]);
introAssets.set('good', ['ready-good', "set-good", "go-good"]);
introAssets.set('school', [
'stages/weeb/pixelUI/ready-pixel',
'stages/weeb/pixelUI/set-pixel',
Expand All @@ -1080,6 +1081,7 @@ class PlayState extends MusicBeatState
var altSuffix:String = "";

if (isGood)
introAlts = introAssets.get('good');
altSuffix = '-good';

for (value in introAssets.keys())
Expand All @@ -1089,6 +1091,7 @@ class PlayState extends MusicBeatState
introAlts = introAssets.get(value);
altSuffix = '-pixel';
if (isGood)
introAlts = introAssets.get('schoolEvil');
altSuffix = '-pixel-good';
}
}
Expand Down

0 comments on commit 7f2e19c

Please sign in to comment.