File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1256,9 +1256,6 @@ class PlayState extends MusicBeatState
12561256
12571257 updateRatingStuff ();
12581258
1259- if (controls. PAUSE && startedCountdown && canPause )
1260- pauseGame ();
1261-
12621259 if (canAccessDebugMenus ) {
12631260 if (chartingMode && FlxG .keys .justPressed .SEVEN ) {
12641261 FlxG .switchState (new funkin.editors.charter. Charter (SONG .meta .name , difficulty , false ));
@@ -1300,6 +1297,9 @@ class PlayState extends MusicBeatState
13001297 while (events .length > 0 && events .last ().time <= Conductor .songPosition )
13011298 executeEvent (events .pop ());
13021299
1300+ if (controls. PAUSE && startedCountdown && canPause )
1301+ pauseGame ();
1302+
13031303 if (generatedMusic && strumLines .members [curCameraTarget ] != null )
13041304 {
13051305 var pos = FlxPoint .get ();
You can’t perform that action at this time.
0 commit comments