mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-03-21 20:39:52 -04:00
merch link freeplay fix
This commit is contained in:
parent
d155e89cbe
commit
192f1113b4
1 changed files with 3 additions and 3 deletions
|
@ -146,6 +146,7 @@ class FreeplayState extends MusicBeatSubState
|
|||
}
|
||||
|
||||
super(FlxColor.TRANSPARENT);
|
||||
FlxG.state.persistentUpdate = false;
|
||||
}
|
||||
|
||||
override function create():Void
|
||||
|
@ -1279,11 +1280,10 @@ class FreeplayState extends MusicBeatSubState
|
|||
public static function build(?params:FreeplayStateParams, ?stickers:StickerSubState):MusicBeatState
|
||||
{
|
||||
var result = new MainMenuState();
|
||||
result.persistentUpdate = false;
|
||||
result.persistentDraw = true;
|
||||
|
||||
result.openSubState(new FreeplayState(params, stickers));
|
||||
|
||||
result.persistentUpdate = false;
|
||||
result.persistentDraw = true;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue