File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -2005,6 +2005,11 @@ class APPlayState extends PlayState {
20052005 return true ;
20062006 }
20072007
2008+ public function forceResync ()
2009+ {
2010+ resyncVocals ();
2011+ }
2012+
20082013 override public function endSong (): Bool
20092014 {
20102015 if (effectTimer != null && effectTimer .active )
Original file line number Diff line number Diff line change @@ -514,7 +514,10 @@ class TransitionState {
514514 restoreSprites ();
515515 CppAPI .setWindowOppacity (1 );
516516 FlxG .sound .resume ();
517- try { if (! psPause ) states. PlayState .instance .paused = false ; states. PlayState .instance .canResync = true } catch (_ ) {}
517+ try {
518+ if (! psPause ) cast (states. PlayState .instance , archipelago. APPlayState ).paused = false ;
519+ cast (states. PlayState .instance , archipelago. APPlayState ).forceResync ();
520+ } catch (_ ) {}
518521 ArchPopup .startPopupCustom (' APItem: Fake Transition' , " Gotcha!" , " ArchWhite" );
519522 }},
520523 function (num )
You can’t perform that action at this time.
0 commit comments