From 9ab5276eb9c59bed81f7a2f96c9c31c786d009db Mon Sep 17 00:00:00 2001 From: yavi Date: Fri, 25 Dec 2009 05:07:51 +0300 Subject: [PATCH] [9059] Implement expire effect for spell 28169 Signed-off-by: VladimirMangos --- src/game/SpellAuras.cpp | 6 ++++++ src/shared/revision_nr.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 3e4469c26..22a12933c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2385,6 +2385,12 @@ void Aura::HandleAuraDummy(bool apply, bool Real) switch(GetId()) { + case 28169: // Mutating Injection + { + // Poison Cloud + m_target->CastSpell(m_target, 28240, true, NULL, this); + return; + } case 36730: // Flame Strike { m_target->CastSpell(m_target, 36731, true, NULL, this); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 35d9e664c..08637617f 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 "9058" + #define REVISION_NR "9059" #endif // __REVISION_NR_H__