Do not trip hacker detection if target is on their XTargets

This commit is contained in:
Michael Cook (mackal) 2014-01-24 18:48:47 -05:00
parent d51e60cf8b
commit 17f0cffca6

View File

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