[9322] Fix spell 69378 and 69381

Signed-off-by: Lightguard <Lightguard@tauri.hu>
This commit is contained in:
Marik 2010-02-07 15:56:37 +01:00 committed by Lightguard
parent db547a008a
commit a8de1c0ad4
2 changed files with 17 additions and 1 deletions

View file

@ -5262,6 +5262,22 @@ void Spell::EffectScriptEffect(uint32 effIndex)
m_caster->CastSpell(unitTarget, 72590, true);
return;
}
case 69381: //Gift of the Wild
{
if(!unitTarget)
return;
m_caster->CastSpell(unitTarget, 72588, true);
return;
}
case 69378: //Blessing of Forgotten Kings
{
if(!unitTarget)
return;
m_caster->CastSpell(unitTarget, 72586, true);
return;
}
}
break;
}

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9321"
#define REVISION_NR "9322"
#endif // __REVISION_NR_H__