aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-30 11:09:20 +0800
committermegamage <none@none>2009-07-30 11:09:20 +0800
commit66a05b6be05351a8ab36126129de8b1969b84279 (patch)
tree951d0cdb42f53cc9bf44222d74b1c3126f6000fc /src
parenta12501fb5e6f827d905e0eeba5bc908f8279880a (diff)
[8246] Fixed check for spell 59921 debuf aura (55095) at target for spell 49202 and ranks. Author: raftom
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Unit.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index 111538040f8..b0b3968d07c 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -9271,7 +9271,8 @@ uint32 Unit::SpellDamageBonus(Unit *pVictim, SpellEntry const *spellProto, uint3
}
else // Tundra Stalker
{
- if (pVictim->GetAura(SPELL_AURA_PERIODIC_DAMAGE, SPELLFAMILY_DEATHKNIGHT,0, 0x4000000,0))
+ // Frost Fever (target debuff)
+ if (pVictim->GetAura(SPELL_AURA_MOD_HASTE, SPELL_AURA_PERIODIC_DAMAGE, SPELLFAMILY_DEATHKNIGHT, 0, 0, 0x2))
DoneTotalMod *= ((*i)->GetAmount()+100.0f)/100.0f;
break;
}