From 54053f7e247019336c2cc095e1b91ed80636f788 Mon Sep 17 00:00:00 2001 From: Kinglykrab Date: Thu, 19 Sep 2019 22:04:54 -0400 Subject: [PATCH] Fix maximum status value. - Maximum Status of 250 was causing status levels 251 to 254 to be excluded from the queue. --- zone/client_packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 2b5702af4..0c1306577 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -4551,7 +4551,7 @@ void Client::Handle_OP_ClientUpdate(const EQApplicationPacket *app) { MakeSpawnUpdate(position_update); if (gm_hide_me) { - entity_list.QueueClientsStatus(this, outapp, true, Admin(), 250); + entity_list.QueueClientsStatus(this, outapp, true, Admin(), 255); } else { entity_list.QueueCloseClients(this, outapp, true, RuleI(Range, ClientPositionUpdates), nullptr, true); }