1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-06-21 10:01:32 +00:00

Merge pull request #2603 from gamerbross/bugfix/unscripted-stage-trace

[BUGFIX] Unscripted Stage Log Trace (missing toString for Stage)
This commit is contained in:
Eric 2024-05-29 00:27:36 -04:00 committed by GitHub
commit eeaae74b46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -852,6 +852,11 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass implements
}
}
public override function toString():String
{
return 'Stage($id)';
}
static function _fetchData(id:String):Null<StageData>
{
return StageRegistry.instance.parseEntryDataWithMigration(id, StageRegistry.instance.fetchEntryVersion(id));