mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +00:00
More UCS refactoring
This commit is contained in:
+1
-2
@@ -574,7 +574,6 @@ void Clientlist::CheckForStaleConnections(Client *c) {
|
||||
|
||||
void Clientlist::Process()
|
||||
{
|
||||
|
||||
std::shared_ptr<EQStream> eqs;
|
||||
|
||||
while ((eqs = chatsf->Pop())) {
|
||||
@@ -610,7 +609,7 @@ void Clientlist::Process()
|
||||
|
||||
bool KeyValid = true;
|
||||
|
||||
while (KeyValid && !(*it)->GetForceDisconnect() && (app = (EQApplicationPacket *)(*it)->ClientStream->PopPacket())) {
|
||||
while (KeyValid && !(*it)->GetForceDisconnect() && (app = (*it)->ClientStream->PopPacket())) {
|
||||
EmuOpcode opcode = app->GetOpcode();
|
||||
|
||||
switch (opcode) {
|
||||
|
||||
Reference in New Issue
Block a user