diff options
-rwxr-xr-x | src/server/game/AI/CoreAI/UnitAI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AI/CoreAI/UnitAI.cpp b/src/server/game/AI/CoreAI/UnitAI.cpp index 320389485af..9800bf88ca1 100755 --- a/src/server/game/AI/CoreAI/UnitAI.cpp +++ b/src/server/game/AI/CoreAI/UnitAI.cpp @@ -120,7 +120,7 @@ struct DefaultTargetSelector : public std::unary_function<Unit *, bool> } else { - if (pTarget->HasAura(m_aura)) + if (pTarget->HasAura(-m_aura)) return false; } } |