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 -4
View File
@@ -23,7 +23,6 @@
#include "worldserver.h"
#include "zonedb.h"
#include "../common/eqemu_logsys.h"
#include <chrono>
extern WorldServer worldserver;
@@ -558,10 +557,9 @@ void DynamicZone::HandleWorldMessage(ServerPacket* pack)
{
for (const auto& client_list_iter : entity_list.GetClientList())
{
Client* client = client_list_iter.second;
if (client)
if (client_list_iter.second)
{
client->SetDzRemovalTimer(true);
client_list_iter.second->SetDzRemovalTimer(true);
}
}
}