Skip to content

Commit

Permalink
[Rogue] Cache invalidation is your friend
Browse files Browse the repository at this point in the history
  • Loading branch information
Mystler committed May 26, 2017
1 parent 50265c7 commit b79d2f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/class_modules/sc_rogue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8423,7 +8423,8 @@ void rogue_t::create_buffs()
buffs.shivarran_symmetry = buff_creator_t( this, "shivarran_symmetry", find_spell( 226318 ) );
// Subtlety
buffs.the_first_of_the_dead = buff_creator_t( this, "the_first_of_the_dead", find_spell( 248210 ) )
.default_value( find_spell( 248210 ) -> effectN( 1 ).percent() );
.default_value( find_spell( 248210 ) -> effectN( 1 ).percent() )
.add_invalidate( CACHE_PLAYER_DAMAGE_MULTIPLIER );


// Tiers
Expand Down

0 comments on commit b79d2f5

Please sign in to comment.