[12001] Implement target limiting for spell 47669

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Xfurry 2012-06-12 23:54:03 +02:00 committed by Schmoozerd
parent acc27152eb
commit 77c5ae1684
3 changed files with 3 additions and 1 deletions

View file

@ -1592,6 +1592,7 @@ void Spell::SetTargetMap(SpellEffectIndex effIndex, uint32 targetMode, UnitList&
case 38794: // Murmur's Touch (h) case 38794: // Murmur's Touch (h)
case 44869: // Spectral Blast case 44869: // Spectral Blast
case 45976: // Open Portal case 45976: // Open Portal
case 47669: // Awaken Subboss
case 48278: // Paralyze (Utgarde Pinnacle) case 48278: // Paralyze (Utgarde Pinnacle)
case 50988: // Glare of the Tribunal (Halls of Stone) case 50988: // Glare of the Tribunal (Halls of Stone)
case 54148: // Ritual of the Sword (Utgarde Pinnacle, Svala) case 54148: // Ritual of the Sword (Utgarde Pinnacle, Svala)

View file

@ -714,6 +714,7 @@ bool IsPositiveEffect(SpellEntry const *spellproto, SpellEffectIndex effIndex)
case 27201: case 27201:
case 27202: case 27202:
case 27203: case 27203:
case 47669:
return true; return true;
default: default:
break; break;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12000" #define REVISION_NR "12001"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__