[10441] Fix 64962 bonus for 47541 and ranks

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
Warlord123 2010-09-04 16:27:35 +03:00 committed by Laise
parent a95f275aad
commit b5ed6938ad
2 changed files with 7 additions and 1 deletions

View file

@ -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: