[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
2 changed files with 0 additions and 12 deletions
-11
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) {