diff options
author | QAston <none@none> | 2009-03-10 23:22:06 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-03-10 23:22:06 +0100 |
commit | 444bf06830c5331ee3ea5ecec33939705cf67960 (patch) | |
tree | 0ec8f8ae66b909269853faa5db3388e46b7c81e1 /src | |
parent | 6e38f12f3e96de6027363c098c139a1bdaf316e6 (diff) |
*Fix fire nova totem proc.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Unit.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 5adf109e2a8..cfd4a8ead5a 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4031,7 +4031,7 @@ bool Unit::RemoveNoStackAurasDueToAura(Aura *Aur) // Remove all auras by aura caster for (uint8 a=0;a<3;++a) { - spellEffectPair spair = spellEffectPair((*i).second->GetId(), a); + spellEffectPair spair = spellEffectPair(i_spellId, a); for(AuraMap::iterator iter = m_Auras.lower_bound(spair); iter != m_Auras.upper_bound(spair);) { if(iter->second->GetCasterGUID()==caster) @@ -6202,6 +6202,12 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu { switch(dummySpell->Id) { + // Improved fire nova totem + case 16544: + { + triggered_spell_id = 16086; + break; + } // Totemic Power (The Earthshatterer set) case 28823: { |