Fix maximum status value.

- Maximum Status of 250 was causing status levels 251 to 254 to be excluded from the queue.
This commit is contained in:
Kinglykrab 2019-09-19 22:04:54 -04:00
parent fdf2fe71e1
commit 54053f7e24

View File

@ -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);
}