Skip to content

Commit

Permalink
[Warrior] Fix Thunder Blast damage for Mountain Thane - Effect 2 is n…
Browse files Browse the repository at this point in the history
…ot flagged as Protection only in spell data, mistakenly causing it to be applied to Fury as well.
  • Loading branch information
Archimtiros committed Nov 30, 2024
1 parent cdfba55 commit 33ac219
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion engine/class_modules/sc_warrior.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10605,9 +10605,13 @@ void warrior_t::apply_affecting_auras( action_t& action )

// Mountain Thane
action.apply_affecting_aura( talents.mountain_thane.strength_of_the_mountain );
action.apply_affecting_aura( talents.mountain_thane.thunder_blast );
action.apply_affecting_aura( talents.mountain_thane.storm_bolts );
action.apply_affecting_aura( talents.mountain_thane.thorims_might );
if ( specialization() == WARRIOR_PROTECTION )
{
action.apply_affecting_aura( talents.mountain_thane.thunder_blast );
// Effect 2 is not properly flagged as Protection only in Spell Data. Effect 1 & 3 are manually handled elsewhere.
}
}

/* Report Extension Class
Expand Down

0 comments on commit 33ac219

Please sign in to comment.