From 935dde797c4a242a17346c6e8fcf78ba33039e6d Mon Sep 17 00:00:00 2001 From: Trust Date: Mon, 3 Sep 2018 09:34:14 -0400 Subject: [PATCH] Prevents players from /assist to see if a mob is up due to error or no error messages. --- zone/client_packet.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 5cafbaee2..8fee2460a 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -2950,7 +2950,11 @@ void Client::Handle_OP_Assist(const EQApplicationPacket *app) Distance(m_Position, assistee->GetPosition()) <= TARGETING_RANGE)) { SetAssistExemption(true); eid->entity_id = new_target->GetID(); + } else { + eid->entity_id = 0; } + } else { + eid->entity_id = 0; } }