aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellEffects.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-01 17:50:26 -0500
committermegamage <none@none>2009-07-01 17:50:26 -0500
commitbc2b02708f377bae74241b2077f17bc554da07d2 (patch)
tree2eef4f72c863f6d5a32013c87a3f534610d8b834 /src/game/SpellEffects.cpp
parent8b0e1412265a2124cb8921b6277e68260b4c715e (diff)
[8093] Fixed effect of spell 25771. Author: ApoC
--HG-- branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r--src/game/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 44cbc2f04f1..6aeb5f90869 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -6159,7 +6159,7 @@ void Spell::EffectCharge2(uint32 /*i*/)
{
target->GetContactPoint(m_caster, x, y, z);
// not all charge effects used in negative spells
- if ( !IsPositiveSpell(m_spellInfo->Id) && m_caster->GetTypeId() == TYPEID_PLAYER)
+ if(!IsPositiveSpell(m_spellInfo->Id) && m_caster->GetTypeId() == TYPEID_PLAYER)
m_caster->Attack(target, true);
}
else