From 17f0cffca66294f6ca583ecd146c71d2a3504f41 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 24 Jan 2014 18:48:47 -0500 Subject: [PATCH] Do not trip hacker detection if target is on their XTargets --- zone/client_packet.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 630a7d77d..3de2e7f20 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -1560,6 +1560,11 @@ void Client::Handle_OP_TargetCommand(const EQApplicationPacket *app) SetSenseExemption(false); return; } + else if(IsXTarget(GetTarget())) + { + GetTarget()->IsTargeted(1); + return; + } else if(GetBindSightTarget()) { if(GetBindSightTarget()->DistNoRoot(*GetTarget()) > (zone->newzone_data.maxclip*zone->newzone_data.maxclip))