diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 5c0d84a7960..821209e8235 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6693,7 +6693,7 @@ void AuraEffect::PeriodicDummyTick() switch (spell->Id) { case 49016: //Hysteria - uint32 damage = uint32(caster->GetMaxHealth()*0.01f); + uint32 damage = uint32(m_target->GetMaxHealth()*0.01f); m_target->DealDamage(m_target, damage, NULL, DIRECT_DAMAGE, SPELL_SCHOOL_MASK_NORMAL, NULL, false); break; } |