This commit is contained in:
vis2k 2018-12-30 22:08:20 +01:00
parent 39098090b6
commit 418fc02b3f

View File

@ -985,9 +985,10 @@ static void UnSpawnObject(GameObject obj)
}
NetworkIdentity identity;
if (!GetNetworkIdentity(obj, out identity)) return;
UnSpawnObject(identity);
if (GetNetworkIdentity(obj, out identity))
{
UnSpawnObject(identity);
}
}
static void UnSpawnObject(NetworkIdentity identity)