Skip to content

Commit

Permalink
[Mage] Adjust Frost T21 4pc expiration.
Browse files Browse the repository at this point in the history
  • Loading branch information
vituscze committed Sep 21, 2017
1 parent a30a8ff commit ea93028
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions engine/class_modules/sc_mage.cpp
Expand Up @@ -4654,8 +4654,9 @@ struct ice_lance_t : public frost_mage_spell_t
}
}

if ( s -> chain_target == ( 0 + p() -> talents.splitting_ice -> ok() )
&& p() -> sets -> has_set_bonus( MAGE_FROST, T21, B4 ) )
// TODO: Set bonus is currently bugged on PTR; probably intended to
// expire on any Ice Lance impact.
if ( p() -> sets -> has_set_bonus( MAGE_FROST, T21, B4 ) )
{
p() -> buffs.arctic_blast -> expire();
}
Expand All @@ -4668,6 +4669,7 @@ struct ice_lance_t : public frost_mage_spell_t
am *= 1.0 + p() -> buffs.chain_reaction -> check_stack_value();
am *= 1.0 + p() -> buffs.magtheridons_might -> check_stack_value();
am *= 1.0 + p() -> buffs.arctic_blast -> check_value();

return am;
}

Expand Down

0 comments on commit ea93028

Please sign in to comment.