From 103d808925369785ef4567de6e5157e63e775c67 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 7 May 2015 22:15:43 -0400 Subject: [PATCH] Whoops, we do want to ignore the sender --- zone/client_packet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 690185744..317530110 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -10335,7 +10335,7 @@ void Client::Handle_OP_PlayerStateAdd(const EQApplicationPacket *app) PlayerState_Struct *ps = (PlayerState_Struct *)app->pBuffer; AddPlayerState(ps->state); - entity_list.QueueClients(this, app, false); + entity_list.QueueClients(this, app, true); } void Client::Handle_OP_PlayerStateRemove(const EQApplicationPacket *app) @@ -10348,7 +10348,7 @@ void Client::Handle_OP_PlayerStateRemove(const EQApplicationPacket *app) RemovePlayerState(ps->state); // We should probably save it server side, but for now this works - entity_list.QueueClients(this, app, false); + entity_list.QueueClients(this, app, true); } void Client::Handle_OP_PickPocket(const EQApplicationPacket *app)