Skip to content

Commit

Permalink
[Mage] Backport Fire Blast CDR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vituscze committed Jan 17, 2025
1 parent 1eae504 commit 124bc1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6065,7 +6065,8 @@ struct meteorite_impact_t final : public mage_spell_t
{
mage_spell_t::execute();

p()->cooldowns.fire_blast->adjust( -p()->talents.glorious_incandescence->effectN( 2 ).time_value(), true, false );
if ( p()->specialization() == MAGE_FIRE )
p()->cooldowns.fire_blast->adjust( -p()->talents.glorious_incandescence->effectN( 2 ).time_value(), true, false );
}
};

Expand Down

0 comments on commit 124bc1d

Please sign in to comment.