Fix a crash when querying FlxG.state

This commit is contained in:
EliteMasterEric 2024-05-08 00:08:44 -04:00
parent a6948c3a38
commit be07760103
1 changed files with 3 additions and 1 deletions

View File

@ -141,7 +141,9 @@ class CrashHandler
fullContents += '\n';
fullContents += 'Flixel Current State: ${Type.getClassName(Type.getClass(FlxG.state))}\n';
var currentState = FlxG.state != null ? Type.getClassName(Type.getClass(FlxG.state)) : 'No state loaded';
fullContents += 'Flixel Current State: ${currentState}\n';
fullContents += '\n';