From bc7fe60ac9810fdf79d8d2199dd78d26f4888224 Mon Sep 17 00:00:00 2001 From: Warlord123 Date: Sat, 4 Sep 2010 16:27:35 +0300 Subject: [PATCH] [10441] Fix 64962 bonus for 47541 and ranks Signed-off-by: Laise --- src/game/Unit.cpp | 6 ++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 4bf75337d02..797583196cf 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -6268,6 +6268,12 @@ uint32 Unit::SpellDamageBonusDone(Unit *pVictim, SpellEntry const *spellProto, u } } } + // Death Coil (bonus from Item - Death Knight T8 DPS Relic) + else if (spellProto->SpellFamilyFlags & UI64LIT(0x00002000)) + { + if (Aura* sigil = GetDummyAura(64962)) + DoneTotal += sigil->GetModifier()->m_amount; + } break; } default: diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index adfa0284dfd..604b75329f7 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10440" + #define REVISION_NR "10441" #endif // __REVISION_NR_H__