Fixed potential issue when destroying objects

This commit is contained in:
Albin Corén 2018-04-02 17:38:57 +02:00
parent 4b8b88d550
commit 17a594ee98

View File

@ -77,10 +77,13 @@ namespace MLAPI.NetworkingManagerComponents.Core
internal static void DestroyNonSceneObjects()
{
foreach (KeyValuePair<uint, NetworkedObject> netObject in spawnedObjects)
if(spawnedObjects != null)
{
if (!netObject.Value.sceneObject)
MonoBehaviour.Destroy(netObject.Value.gameObject);
foreach (KeyValuePair<uint, NetworkedObject> netObject in spawnedObjects)
{
if (!netObject.Value.sceneObject)
MonoBehaviour.Destroy(netObject.Value.gameObject);
}
}
}