Skip to content

Commit

Permalink
[10441] Fix 64962 bonus for 47541 and ranks
Browse files Browse the repository at this point in the history
Signed-off-by: Laise <fenrisse@gmail.com>
  • Loading branch information
Warlord123 authored and Laise committed Sep 4, 2010
1 parent 9f38b5e commit bc7fe60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/game/Unit.cpp
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion 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__

0 comments on commit bc7fe60

Please sign in to comment.