[11427] Add dummy effect of spell 48790

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2011-05-03 19:06:09 +02:00
parent 635d132ea8
commit 18605354f7
2 changed files with 10 additions and 1 deletions

View file

@ -1742,6 +1742,15 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
m_caster->CastSpell(m_caster, 48047, true, m_CastItem, NULL, unitTarget->GetObjectGuid());
return;
}
case 48790: // Neltharion's Flame
{
if (!unitTarget)
return;
// Neltharion's Flame Fire Bunny: Periodic Fire Aura
unitTarget->CastSpell(unitTarget, 48786, false);
return;
}
case 49357: // Brewfest Mount Transformation
{
if (m_caster->GetTypeId() != TYPEID_PLAYER)

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11426"
#define REVISION_NR "11427"
#endif // __REVISION_NR_H__