diff --git a/OpenRA.Game/Game.cs b/OpenRA.Game/Game.cs index bbdf8cb506..80f61b79c8 100755 --- a/OpenRA.Game/Game.cs +++ b/OpenRA.Game/Game.cs @@ -326,7 +326,8 @@ namespace OpenRA public static void Disconnect() { - orderManager.world.traitDict.PrintReport(); + if (orderManager.world != null) + orderManager.world.traitDict.PrintReport(); if (IsHost && server != null) server.Shutdown();