[7377] Dummy effects for portal spells used in DK starting area.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
GriffonHeart 2009-03-04 02:39:33 +03:00 committed by VladimirMangos
parent fee3278e57
commit e409b32c71
2 changed files with 18 additions and 2 deletions

View file

@ -1106,7 +1106,23 @@ void Spell::EffectDummy(uint32 i)
{
m_caster->CastSpell(m_caster,54586,true);
return;
}
}
case 58418: // Portal to Orgrimmar
{
if(!unitTarget)
return;
unitTarget->CastSpell(unitTarget, 58419, true);
break;
}
case 58420: // Portal to Stormwind
{
if(!unitTarget)
return;
unitTarget->CastSpell(unitTarget, 58421, true);
break;
}
}
//All IconID Check in there

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7376"
#define REVISION_NR "7377"
#endif // __REVISION_NR_H__