[Cleanup] Remove GateAllClients() from zone/entity.cpp and zone/entity.h (#3391)

# Notes
- This is unused.
This commit is contained in:
Alex King 2023-06-12 16:10:36 -04:00 committed by GitHub
parent 306b06745f
commit dfaa929778
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 12 deletions

View File

@ -5115,17 +5115,6 @@ uint32 EntityList::CheckNPCsClose(Mob *center)
return count;
}
void EntityList::GateAllClients()
{
auto it = client_list.begin();
while (it != client_list.end()) {
Client *c = it->second;
if (c)
c->GoToBind();
++it;
}
}
void EntityList::SignalAllClients(int signal_id)
{
for (const auto& c : client_list) {

View File

@ -514,7 +514,6 @@ public:
void ZoneWho(Client *c, Who_All_Struct* Who);
void UnMarkNPC(uint16 ID);
void GateAllClients();
void SignalAllClients(int signal_id);
void UpdateQGlobal(uint32 qid, QGlobal newGlobal);
void DeleteQGlobal(std::string name, uint32 npcID, uint32 charID, uint32 zoneID);