Skip to content

Commit

Permalink
[Rogue] Fix Master Assassin Duration
Browse files Browse the repository at this point in the history
* Dummy value on the talent is no longer used
  • Loading branch information
EvanMichaels committed Oct 22, 2024
1 parent 093bab9 commit 89b2748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_rogue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11801,7 +11801,7 @@ void rogue_t::create_buffs()
buffs.kingsbane->set_refresh_behavior( buff_refresh_behavior::NONE );

buffs.master_assassin = make_buff<damage_buff_t>( this, "master_assassin", spec.master_assassin_buff );
buffs.master_assassin->set_duration( timespan_t::from_seconds( talent.assassination.master_assassin->effectN( 1 ).base_value() ) );
buffs.master_assassin->apply_affecting_aura( talent.rogue.subterfuge ); // Duration Modifer;
buffs.master_assassin_aura = make_buff<damage_buff_t>( this, "master_assassin_aura", spec.master_assassin_aura_buff );
buffs.master_assassin_aura
->set_constant_behavior( buff_constant_behavior::NEVER_CONSTANT )
Expand Down

0 comments on commit 89b2748

Please sign in to comment.