diff options
author | silinoron <none@none> | 2010-09-05 14:59:46 -0700 |
---|---|---|
committer | silinoron <none@none> | 2010-09-05 14:59:46 -0700 |
commit | 5e95be0c33d25bb9832d20e724f7c7279d1e82ca (patch) | |
tree | 45ac5d6dd92be7a2dfa1c3bb9fc200ebf8d626b3 /src | |
parent | 4f112d6a9d75130558484284a0553575ac8048c7 (diff) |
Fix Glyph of Totem of Wrath.
Fixes issue #3743
Patch by dr.tenma.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Unit/Unit.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index b947aca725e..40b405ccacb 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -7416,6 +7416,38 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger } return false; } + case 63280: // Glyph of Totem of Wrath + { + if (procSpell->SpellIconID != 2019) + return false; + + AuraEffect * aurEffA = NULL; + AuraEffectList const& auras = GetAuraEffectsByType(SPELL_AURA_MOD_DAMAGE_DONE); + for (AuraEffectList::const_iterator i = auras.begin(); i != auras.end(); ++i) + { + SpellEntry const *spell = (*i)->GetSpellProto(); + if (spell->SpellFamilyName == uint32(SPELLFAMILY_SHAMAN) && spell->SpellFamilyFlags.HasFlag(0, 0x02000000, 0)) + { + if ((*i)->GetCasterGUID() != GetGUID()) + continue; + if (spell->Id == 63283) + continue; + aurEffA = (*i); + break; + } + } + if (aurEffA) + { + int32 bp0 = 0, bp1 = 0; + bp0 = aurEffA->GetAmount() * triggerAmount / 100; + if (AuraEffect * aurEffB = aurEffA->GetBase()->GetEffect(EFFECT_1)) + bp1 = aurEffB->GetAmount() * triggerAmount / 100; + CastCustomSpell(this, 63283, &bp0, &bp1, NULL, true, NULL, triggeredByAura); + return true; + } + return false; + } + break; } // Frozen Power if (dummySpell->SpellIconID == 3780) |