From cd2b07e50af67f79188c2da32b2a9cb55730d09d Mon Sep 17 00:00:00 2001 From: Xfurry Date: Tue, 19 Jun 2012 20:12:45 +0200 Subject: [PATCH] [12011] Implement spell 33326 Signed-off-by: Schmoozerd --- src/game/SpellAuras.cpp | 5 +++++ src/shared/revision_nr.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 804859ea6..441848e78 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2131,6 +2131,11 @@ void Aura::HandleAuraDummy(bool apply, bool Real) GetHolder()->SetAuraDuration(urand(1, 30)*IN_MILLISECONDS); return; } + case 33326: // Stolen Soul Dispel + { + target->RemoveAurasDueToSpell(32346); + return; + } // Gender spells case 38224: // Illidari Agent Illusion case 37096: // Blood Elf Illusion diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a9ad3e5ed..7b514d8b4 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12010" + #define REVISION_NR "12011" #endif // __REVISION_NR_H__