Core/Player: do not consider FLAG_EXTRA_NO_XP_AT_KILL or pet status when deciding if a creature counts as a "gives experience or honor" target. (#24884)

Closes #23860
This commit is contained in:
Rothend
2020-06-24 21:41:01 +02:00
committed by Ovahlord
parent cb6611b048
commit 2ef041bf36

View File

@@ -24631,7 +24631,7 @@ bool Player::isHonorOrXPTarget(Unit const* victim) const
if (Creature const* creature = victim->ToCreature())
{
if (!creature->CanGiveExperience())
if (creature->IsCritter() || creature->IsTotem())
return false;
}
return true;