Skip to content

Commit

Permalink
Core/Threat: Further tweak to assist threat, all CC now prevents assi…
Browse files Browse the repository at this point in the history
…st threat splitting (not just damage-breakable CC)
  • Loading branch information
Treeston committed Aug 27, 2018
1 parent 710488e commit 408ce48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Combat/ThreatManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ void ThreatManager::ForwardThreatForAssistingMe(Unit* assistant, float baseAmoun
for (auto const& pair : _threatenedByMe)
{
Creature* owner = pair.second->GetOwner();
if (!owner->HasBreakableByDamageCrowdControlAura())
if (!owner->HasUnitState(UNIT_STATE_CONTROLLED))
canBeThreatened.push_back(owner);
else
cannotBeThreatened.push_back(owner);
Expand Down

0 comments on commit 408ce48

Please sign in to comment.