Update to Client::QueuePacket to not attempt to send a packet to a BoT. Not clean, but a broad solution.

This commit is contained in:
neckkola
2022-01-06 17:18:34 -04:00
parent 42ef4a2891
commit fdb23f1a5f
3 changed files with 41 additions and 24 deletions
+1 -1
View File
@@ -813,7 +813,7 @@ void Client::QueuePacket(const EQApplicationPacket* app, bool ack_req, CLIENT_CO
AddPacket(app, ack_req);
}
else
if(eqs)
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);
}