diff options
author | megamage <none@none> | 2009-03-05 15:16:13 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-05 15:16:13 -0600 |
commit | 769c835f266c6e94e878d6e2db0118df1fa7b450 (patch) | |
tree | 77d916a2c66941c707e2d7b1e9efcc7fa3d8bbeb /src | |
parent | 6a577295d945dac9c43a4d4130c8fdaa70061eb3 (diff) |
*Do not allow mage to cast multiple polymorph on different targets.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 6ab141bba90..c01b3c69ca3 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -751,6 +751,7 @@ bool IsSingleTargetSpells(SpellEntry const *spellInfo1, SpellEntry const *spellI switch(spec1) { case SPELL_JUDGEMENT: + case SPELL_MAGE_POLYMORPH: if(GetSpellSpecific(spellInfo2->Id) == spec1) return true; break; |