Skip to content

Commit

Permalink
[SD] Correct Thrash Aura Passive for Soulflayer 11359 - npc_soulflaye…
Browse files Browse the repository at this point in the history
…r & Maws 15571 - boss_maws
  • Loading branch information
AnonXS committed Nov 1, 2023
1 parent 46cbe99 commit b3f050f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ enum
// npc_soulflayer
SPELL_SOUL_TAP = 24619,
SPELL_LIGHTNING_BREATH = 20543,
SPELL_THRASH = 12787,
SPELL_THRASH = 8876,
SPELL_KNOCKDOWN = 20276,
SPELL_FEAR = 22678,
SPELL_FRENZY = 28371,
Expand Down
3 changes: 3 additions & 0 deletions src/game/AI/ScriptDevAI/scripts/kalimdor/azshara.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,7 @@ GameObjectAI* GetAI_go_lightning(GameObject* go)

enum
{
SPELL_THRASH = 8876,
SPELL_FRENZY = 19812,
SPELL_DARK_WATER = 25743,
SPELL_RAMPAGE = 25744,
Expand All @@ -698,6 +699,8 @@ struct boss_mawsAI : public ScriptedAI
uiDarkWaterTimer = 15 * IN_MILLISECONDS;
uiRampageTimer = urand(20, 120) * IN_MILLISECONDS;
uiDespawnTimer = 2.5 * HOUR * IN_MILLISECONDS;

DoCastSpellIfCan(nullptr, SPELL_THRASH, CAST_TRIGGERED | CAST_AURA_NOT_PRESENT);
}

void JustDied(Unit* /*pKiller*/)
Expand Down

0 comments on commit b3f050f

Please sign in to comment.