diff options
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index edbeaf4c9ec..ee18c90e468 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -9965,6 +9965,10 @@ uint32 Unit::SpellDamageBonus(Unit *pVictim, SpellEntry const *spellProto, uint3 break; } } + // Drain Soul - increased damage for targets under 25 % HP + if (spellProto->SpellFamilyFlags[0] & 0x00004000) + if (HasAura(200000)) + DoneTotalMod *= 4; break; case SPELLFAMILY_DEATHKNIGHT: // Improved Icy Touch |