diff options
author | megamage <none@none> | 2009-02-17 11:36:00 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-17 11:36:00 -0600 |
commit | eafa0eb5dff579c72f5b45b7c15ce1c0fc3abc04 (patch) | |
tree | 2a4ba5c4d966f719423b4e52376c99ca11478d3d /src | |
parent | a90d7fb45cc4fdf7de396cc21c87630459387f75 (diff) |
*Fix mutilate. do not require behind target. By Sorken.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Spell.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 13af2ecaa05..c2d301a2825 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -3748,8 +3748,8 @@ uint8 Spell::CanCast(bool strict) if( m_spellInfo->AttributesEx2 == 0x100000 && (m_spellInfo->AttributesEx & 0x200) == 0x200 && target->HasInArc(M_PI, m_caster) //Exclusion for Pounce: Facing Limitation was removed in 2.0.1, but it still uses the same, old Ex-Flags && (!(m_spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && m_spellInfo->SpellFamilyFlags.IsEqual(0x20000,0,0))) - //Multilate - same reason - && (!(m_spellInfo->SpellFamilyName == SPELLFAMILY_ROGUE && m_spellInfo->SpellFamilyFlags[1] & 200000))) + //Mutilate no longer requires you be behind the target as of patch 3.0.3 + && (!(m_spellInfo->SpellFamilyName == SPELLFAMILY_ROGUE && m_spellInfo->SpellFamilyFlags[1] & 20000000000000))) { SendInterrupted(2); return SPELL_FAILED_NOT_BEHIND; |