diff options
author | QAston <none@none> | 2009-03-13 21:24:02 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-03-13 21:24:02 +0100 |
commit | be90383b1337a630eb1417a4555890df6b7c92e5 (patch) | |
tree | 2bc01dfb6da4706f6226e9f1f208b651a3631998 | |
parent | 5e4986ad3a2f4f70e1754b94d5ca631a4f193774 (diff) |
*Fix Glowing Blood.
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellAuras.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 99adb488eb1..4b868812b16 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -4013,9 +4013,10 @@ void Aura::HandleAuraModResistance(bool apply, bool Real) } // Faerie Fire (druid versions) - if( m_spellProto->SpellIconID == 109 && + if( (m_spellProto->SpellIconID == 109 && m_spellProto->SpellFamilyName == SPELLFAMILY_DRUID && - m_spellProto->SpellFamilyFlags & 0x0000000000000400LL ) + m_spellProto->SpellFamilyFlags & 0x0000000000000400LL) + || m_spellProto->Id == 35325) { m_target->ModifyAuraState(AURA_STATE_FAERIE_FIRE,apply); } |