mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[9522] Implement spells 58600 and 58601
This commit is contained in:
parent
24540e4b03
commit
da30ea5ed8
4 changed files with 16 additions and 1 deletions
|
|
@ -1536,6 +1536,12 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
|
|||
case 58418: // Portal to Orgrimmar
|
||||
case 58420: // Portal to Stormwind
|
||||
return; // implemented in EffectScript[0]
|
||||
case 58601: // Remove Flight Auras
|
||||
{
|
||||
m_caster->RemoveSpellsCausingAura(SPELL_AURA_FLY);
|
||||
m_caster->RemoveSpellsCausingAura(SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED);
|
||||
return;
|
||||
}
|
||||
case 59640: // Underbelly Elixir
|
||||
{
|
||||
if (m_caster->GetTypeId() != TYPEID_PLAYER)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue