mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-10 19:10:25 +00:00
g3
This commit is contained in:
+2
-2
@@ -812,7 +812,7 @@ void Client::QueuePacket(const EQApplicationPacket* app, bool ack_req, CLIENT_CO
|
||||
// todo: save packets for later use
|
||||
AddPacket(app, ack_req);
|
||||
}
|
||||
else if (eqs && !IsBot()) //Mitch added the BoTcheck for a fail safe on trying to send a packet to a BoT!
|
||||
else if (eqs) // && !IsBot()) //Mitch added the BoTcheck for a fail safe on trying to send a packet to a BoT!
|
||||
{
|
||||
eqs->QueuePacket(app, ack_req);
|
||||
}
|
||||
@@ -826,7 +826,7 @@ void Client::FastQueuePacket(EQApplicationPacket** app, bool ack_req, CLIENT_CON
|
||||
return;
|
||||
}
|
||||
else {
|
||||
if(eqs && !IsBot()) //Mitch added
|
||||
if(eqs) // && !IsBot()) //Mitch added
|
||||
eqs->FastQueuePacket((EQApplicationPacket **)app, ack_req);
|
||||
else if (app && (*app))
|
||||
delete *app;
|
||||
|
||||
Reference in New Issue
Block a user