[12011] Implement spell 33326

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
Xfurry 2012-06-19 20:12:45 +02:00 committed by Schmoozerd
parent 731a26b1f6
commit cd2b07e50a
2 changed files with 6 additions and 1 deletions

View file

@ -2131,6 +2131,11 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
GetHolder()->SetAuraDuration(urand(1, 30)*IN_MILLISECONDS); GetHolder()->SetAuraDuration(urand(1, 30)*IN_MILLISECONDS);
return; return;
} }
case 33326: // Stolen Soul Dispel
{
target->RemoveAurasDueToSpell(32346);
return;
}
// Gender spells // Gender spells
case 38224: // Illidari Agent Illusion case 38224: // Illidari Agent Illusion
case 37096: // Blood Elf Illusion case 37096: // Blood Elf Illusion

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 "12010" #define REVISION_NR "12011"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__