[11412] Add dummy effect of spell 52369 and 52371

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2011-05-01 10:38:15 +02:00
parent a9ec4f1094
commit f076575a7b
2 changed files with 11 additions and 1 deletions

View file

@ -1986,6 +1986,16 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
} }
return; return;
} }
case 52369: // Detonate Explosives
case 52371: // Detonate Explosives
{
if (!unitTarget)
return;
// Cosmetic - Explosion
unitTarget->CastSpell(unitTarget, 46419, true);
return;
}
case 52759: // Ancestral Awakening case 52759: // Ancestral Awakening
{ {
if (!unitTarget) if (!unitTarget)

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 "11411" #define REVISION_NR "11412"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__