diff options
author | QAston <none@none> | 2009-02-25 19:35:44 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-02-25 19:35:44 +0100 |
commit | 50d2fc34ecc2c9e2481188d8ac10c8ad8e02303e (patch) | |
tree | 1a9961bec9fb39ee8b8ea556175fcde187dcf198 /src/game/Unit.cpp | |
parent | 98b8e2eeb6b62bcc27412a172d9c52a6e2a16bed (diff) |
*Fix forbearance.
*Fix new ranks of Holy Nova.
*Fix Imp. holy concentration.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 92bf97e9e02..ce22eca1854 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4332,6 +4332,9 @@ Aura* Unit::GetAura(AuraType type, uint32 family, uint32 familyFlag1, uint32 fam bool Unit::HasAura(uint32 spellId) const { + //Special case for non existing spell + if (spellId==61988) + return HasAura(61987) || HasAura(25771); for (int i = 0; i < 3 ; ++i) { AuraMap::const_iterator iter = m_Auras.find(spellEffectPair(spellId, i)); |