mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-01-27 23:37:06 +00:00
Merge remote-tracking branch 'public/bugfix/crash-handler-flxstate-check' into bugfix/public-fixes
This commit is contained in:
commit
0b82a206ef
|
@ -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';
|
||||
|
||||
|
|
Loading…
Reference in a new issue