Fix crash caused by improperly canceling a tween

This commit is contained in:
EliteMasterEric 2024-05-29 22:49:57 -04:00
parent fb752ddd78
commit 174c595837

View file

@ -234,7 +234,7 @@ class PauseSubState extends MusicBeatSubState
public override function destroy():Void
{
super.destroy();
charterFadeTween.destroy();
charterFadeTween.cancel();
charterFadeTween = null;
pauseMusic.stop();
}