diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index c0335b226..b9151f3b9 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -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 diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 80833c7f6..5f4c8033a 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7376" + #define REVISION_NR "7377" #endif // __REVISION_NR_H__