[12146] Implement spell 30769

This commit is contained in:
Schmoozerd 2012-08-29 23:15:47 +02:00 committed by Antz
parent c8ebd1678e
commit 705f716cb1
4 changed files with 12 additions and 2 deletions

View file

@ -7058,6 +7058,15 @@ void Spell::EffectScriptEffect(SpellEffectEntry const* effect)
break;
}
case 30769: // Pick Red Riding Hood
{
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER)
return;
// cast Little Red Riding Hood
m_caster->CastSpell(unitTarget, 30768, true);
break;
}
case 30918: // Improved Sprint
{
if (!unitTarget)