1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-06-20 17:42:53 +00:00

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();
}