Skip to content

Commit

Permalink
[Rogue] Use Second Shuriken stealth modifier from Shuriken Storm
Browse files Browse the repository at this point in the history
  • Loading branch information
Mystler committed May 24, 2017
1 parent 7b65567 commit ef23f7f
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 @@ -1537,7 +1537,8 @@ struct second_shuriken_t : public rogue_attack_t
// Stealth Buff
if ( p() -> buffs.stealth -> up() || p() -> buffs.shadow_dance -> up() || p() -> buffs.vanish -> up() )
{
m *= 1.0 + 2.0; //FIXME Hotfix 09-24: Hardcoded to 200% until they add it in Spell Data like Shuriken Storm. Still the case as of 10/22/2016 (7.1 22882).
// Using Shuriken Storm modifier since that is what the spell data refenrences as well.
m *= 1.0 + p() -> find_specialization_spell( "Shuriken Storm" ) -> effectN( 3 ).percent();
}

return m;
Expand Down

0 comments on commit ef23f7f

Please sign in to comment.