Skip to content

Commit

Permalink
fix(Core/Spells): Add Beast Lord 4P bonus (azerothcore#16655)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-mstrs authored Jul 1, 2023
1 parent cd01453 commit d0fa5f0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/server/game/Spells/Auras/SpellAuras.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1918,6 +1918,16 @@ void Aura::HandleAuraSpecificMods(AuraApplication const* aurApp, Unit* caster, b
}
}
break;
case 34026: // Kill Command
// Dungeon Set 3
if (caster->HasAura(37483))
{
if (apply)
{
caster->CastSpell(caster, 37482, true);
}
}
break;
}
break;
case SPELLFAMILY_PALADIN:
Expand Down

0 comments on commit d0fa5f0

Please sign in to comment.