Cleanup expedition headers and unused variables

Modify some expedition and dz logging

Remove unnecessary includes in expedition sources
This commit is contained in:
hg
2020-07-01 20:18:00 -04:00
parent c280615b53
commit 940c8fcb36
8 changed files with 27 additions and 53 deletions
+2 -3
View File
@@ -5216,11 +5216,10 @@ void EntityList::GateAllClientsToSafeReturn()
for (const auto& client_list_iter : client_list)
{
Client* client = client_list_iter.second;
if (client)
if (client_list_iter.second)
{
// falls back to gating clients to bind if dz invalid
client->GoToDzSafeReturnOrBind(dz.GetSafeReturnLocation());
client_list_iter.second->GoToDzSafeReturnOrBind(dz.GetSafeReturnLocation());
}
}
}