[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 <schmoozerd@scriptdev2.com>
This commit is contained in:
Xfurry 2012-04-21 11:53:51 +02:00 committed by Schmoozerd
parent 7fd1f64319
commit c243c42c3c
2 changed files with 1 additions and 10 deletions

View file

@ -815,15 +815,6 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
m_caster->CastSpell(m_caster,spell_id,true,NULL); m_caster->CastSpell(m_caster,spell_id,true,NULL);
return; 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. case 9976: // Polly Eats the E.C.A.C.
{ {
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT) if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT)

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 "11971" #define REVISION_NR "11972"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__