diff --git a/src/strategy/values/StatsValues.cpp b/src/strategy/values/StatsValues.cpp index 6ff3bc65..6e253437 100644 --- a/src/strategy/values/StatsValues.cpp +++ b/src/strategy/values/StatsValues.cpp @@ -4,7 +4,6 @@ */ #include "StatsValues.h" - #include "Playerbots.h" #include "ServerFacade.h" @@ -120,6 +119,10 @@ bool HasManaValue::Calculate() if (!target) return false; + constexpr uint32 PRIEST_SPIRIT_OF_REDEMPTION_SPELL_ID = 20711u; + if (target->HasAura(PRIEST_SPIRIT_OF_REDEMPTION_SPELL_ID)) + return false; + return target->GetPower(POWER_MANA); }