From c243c42c3c5ac2cad504f1bf8199735175b4b2cf Mon Sep 17 00:00:00 2001 From: Xfurry Date: Sat, 21 Apr 2012 11:53:51 +0200 Subject: [PATCH] [11972] Remove partial DummyEffect implementation of spells 8593, 31225 Both belong to Paladin Resurrection quests. And they are expected to be handled by SD2 Signed-off-by: Schmoozerd --- src/game/SpellEffects.cpp | 9 --------- src/shared/revision_nr.h | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 22a903e10..681e8212b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -815,15 +815,6 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->CastSpell(m_caster,spell_id,true,NULL); return; } - case 8593: // Symbol of life (restore creature to life) - case 31225: // Shimmering Vessel (restore creature to life) - { - if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT) - return; - - ((Creature*)unitTarget)->SetDeathState(JUST_ALIVED); - return; - } case 9976: // Polly Eats the E.C.A.C. { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d6770b110..56cc2b28b 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 "11971" + #define REVISION_NR "11972" #endif // __REVISION_NR_H__