@@ -61,7 +61,6 @@ class OptionsMenu extends MusicBeatState
6161 grpControls = new FlxTypedGroup <Alphabet >();
6262 add (grpControls );
6363 controlsStrings [controlsStrings .length ] = " setCustomize Keybinds" ; // I HAVE SEVERE AUTISM LOOODALOFDALK
64- controlsStrings [controlsStrings .length + 1 ] = " setCustomize Info Bar" ;
6564 for (i in 0 ... controlsStrings .length )
6665 {
6766 switch (controlsStrings [i ].substring (3 ).split (" || " )[0 ])
@@ -88,8 +87,9 @@ class OptionsMenu extends MusicBeatState
8887 if (! FlxG .save .data .hitsounds )
8988 FlxG .save .data .hitsounds = controlsStrings [curSelected ].split (" || " )[2 ];
9089 case " Change Note Theme" :
91- if (! FlxG .save .data .enablemissanimations )
90+ if (! FlxG .save .data .notetheme )
9291 FlxG .save .data .notetheme = " NOTE" ;
92+ case " Customize Info Bar" :
9393 }
9494 FlxG .save .flush ();
9595
@@ -125,6 +125,12 @@ class OptionsMenu extends MusicBeatState
125125 trace (controlsStrings [curSelected ].substring (3 ).split (" || " )[0 ]);
126126 switch (controlsStrings [curSelected ].substring (3 ).split (" || " )[0 ])
127127 {
128+ case " Advanced Info Bar" :
129+ FlxG .save .data .advancedinfobar = ! FlxG .save .data .advancedinfobar ;
130+ optionsText .text = FlxG .save .data .advancedinfobar ;
131+ case " Countdown After Pause" :
132+ FlxG .save .data .countdownafterpause = ! FlxG .save .data .countdownafterpause ;
133+ optionsText .text = FlxG .save .data .countdownafterpause ;
128134 case " Downscroll" :
129135 // trace("Before: " + FlxG.save.data.downscroll);
130136 FlxG .save .data .downscroll = ! FlxG .save .data .downscroll ;
@@ -171,7 +177,7 @@ class OptionsMenu extends MusicBeatState
171177 // trace(FlxG.save.data.notetheme);
172178 case " Customize Keybinds" :
173179 OptionsMenu .instance .openSubState (new KeyBindMenu ());
174- default : // lol
180+ case " Customize Info Bar " : // lol
175181 OptionsMenu .instance .openSubState (new InfoBarSubstate ());
176182 }
177183 FlxG .save .flush ();
@@ -254,7 +260,6 @@ class OptionsMenu extends MusicBeatState
254260 viewer .animation .play (' static' );
255261 case " Customize Keybinds" :
256262 optionsText .text = " Press ENTER" ;
257- optionsDesc .text = " Customize the keys you use. (Up down left right)" ;
258263 default : // i am so lazy :LOOOOL I cant figure this out
259264 optionsText .text = " Press ENTER" ;
260265 optionsDesc .text = " Customize your info bar by adding modules.(WIP, DOES NOT WORK IF ADVANCED INFO TEXT IS OFF)" ;
0 commit comments