Prevents players from /assist to see if a mob is up due to error or no error messages.

This commit is contained in:
Trust 2018-09-03 09:34:14 -04:00
parent 3eee699a89
commit 935dde797c

View File

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