mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 21:56:22 +00:00
fix(Core/Spells): Fixed applying Command aura to shaman Feral Spirits. (#13000)
This commit is contained in:
@@ -1281,6 +1281,12 @@ bool Guardian::InitStatsForLevel(uint8 petlevel)
|
||||
AddAura(SPELL_FERAL_SPIRIT_SCALING_01, this);
|
||||
AddAura(SPELL_FERAL_SPIRIT_SCALING_02, this);
|
||||
AddAura(SPELL_FERAL_SPIRIT_SCALING_03, this);
|
||||
|
||||
if (owner->getRace() == RACE_ORC)
|
||||
{
|
||||
CastSpell(this, SPELL_ORC_RACIAL_COMMAND_SHAMAN, true, nullptr, nullptr, owner->GetGUID());
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case NPC_MIRROR_IMAGE: // Mirror Image
|
||||
@@ -1357,7 +1363,7 @@ bool Guardian::InitStatsForLevel(uint8 petlevel)
|
||||
|
||||
// xinef: fixes orc death knight command racial
|
||||
if (owner->getRace() == RACE_ORC)
|
||||
CastSpell(this, SPELL_ORC_RACIAL_COMMAND, true, nullptr, nullptr, owner->GetGUID());
|
||||
CastSpell(this, SPELL_ORC_RACIAL_COMMAND_DK, true, nullptr, nullptr, owner->GetGUID());
|
||||
|
||||
// Avoidance, Night of the Dead
|
||||
if (Aura* aur = AddAura(SPELL_NIGHT_OF_THE_DEAD_AVOIDANCE, this))
|
||||
|
||||
Reference in New Issue
Block a user