- fix uncaught exception that rarely occurred with the intermission screen that would vm-abort out from any attempt to enter a level

This commit is contained in:
Rachael Alexanderson 2022-11-12 00:46:43 -05:00
parent fc7bb4a7e6
commit d388d19793

View file

@ -32,7 +32,8 @@ class IntermissionScreenJob : ScreenJob
override void OnDestroy()
{
controller.Destroy();
if (controller)
controller.Destroy();
Super.OnDestroy();
}
}