Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2384,7 +2384,13 @@ struct hot_streak_spell_t : public custom_state_spell_t<fire_mage_spell_t, hot_s
if ( p()->buffs.hot_streak->check() || p()->buffs.hyperthermia->check() )
return 0_ms;

return custom_state_spell_t::execute_time();
timespan_t t = custom_state_spell_t::execute_time();

// Fire Mage 12.1 Set Bonus 4pc
if ( p()->sets->has_set_bonus( MAGE_FIRE, MID2, B4 ) && p()->buffs.pyroclasm->check() )
t *= 1.0 + p()->buffs.pyroclasm->data().effectN( 3 ).percent();

return t;
}

void snapshot_state( action_state_t* s, result_amount_type rt ) override
Expand All @@ -2399,6 +2405,10 @@ struct hot_streak_spell_t : public custom_state_spell_t<fire_mage_spell_t, hot_s

c += p()->buffs.hyperthermia->check_value();

// Fire Mage 12.1 Set Bonus 2pc
if ( p()->sets->has_set_bonus( MAGE_FIRE, MID2, B2 ) && p()->buffs.pyroclasm->check() )
c += p()->buffs.pyroclasm->data().effectN( 2 ).percent();

return c;
}

Expand Down
Loading