Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
fix (Core/Spells) dash - displacer beast - prowl into catform (#1049)
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypticaz committed Jul 26, 2021
1 parent 5dc77ec commit 7135d11
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/server/game/Spells/Auras/SpellAuras.cpp
Expand Up @@ -1237,6 +1237,20 @@ void Aura::HandleAuraSpecificMods(AuraApplication const* aurApp, Unit* caster, b
caster->CastCustomSpell(target, 64801, &heal, NULL, NULL, true, NULL, GetEffect(EFFECT_0));
}
}

switch (m_spellInfo->Id)
{
case 1850: // Dash
case 137452: // Displacer Beast
case 5215: // Prowl
{
// check for catform
if (!caster->HasAura(768))
caster->CastSpell(caster, 768, true);
break;
}
break;
}
break;
case SPELLFAMILY_MAGE:
if (!caster)
Expand Down

0 comments on commit 7135d11

Please sign in to comment.