diff options
author | Lopin <davca.hr@seznam.cz> | 2011-06-19 14:29:51 +0200 |
---|---|---|
committer | Lopin <davca.hr@seznam.cz> | 2011-06-19 14:29:51 +0200 |
commit | dbba53b745203299c75af4face0e5cb4d11bea2e (patch) | |
tree | 4cc9ffd088e970da1cd23c0b131f91e1ed639845 /src | |
parent | b7d504a7e60ea98d0f826185fe87ce3e625ce0d4 (diff) |
Core/Spells: Fixed Sigil of the Vengeful Hearth
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Entities/Unit/Unit.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 71672669d61..7fe2e4de9d7 100755 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -10577,6 +10577,11 @@ uint32 Unit::SpellDamageBonus(Unit *pVictim, SpellEntry const *spellProto, uint3 if (AuraEffect* aurEff = GetDummyAuraEffect(SPELLFAMILY_DEATHKNIGHT, 2721, 0)) AddPctN(DoneTotalMod, aurEff->GetAmount()); + // Sigil of the Vengeful Heart + if (spellProto->SpellFamilyFlags[0] & 0x2000) + if (AuraEffect* aurEff = GetAuraEffect(64962, EFFECT_1)) + AddPctN(DoneTotal, aurEff->GetAmount()); + // Glacier Rot if (spellProto->SpellFamilyFlags[0] & 0x2 || spellProto->SpellFamilyFlags[1] & 0x6) if (AuraEffect* aurEff = GetDummyAuraEffect(SPELLFAMILY_DEATHKNIGHT, 196, 0)) |