Skip to content

Commit

Permalink
Update sc_hunter.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
syrifgit committed Feb 7, 2025
1 parent 9c3550e commit b4080e2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions engine/class_modules/sc_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6248,7 +6248,7 @@ struct melee_focus_spender_t: hunter_melee_attack_t
am *= 1 + p() -> buffs.mongoose_fury -> stack_value();

if ( p()->buffs.strike_it_rich->check() )
am *= 1 + p() -> buffs.strike_it_rich -> value().percent();
am *= 1 + p() -> buffs.strike_it_rich -> value();

return am;
}
Expand Down Expand Up @@ -7874,15 +7874,14 @@ struct wildfire_bomb_base_t: public hunter_spell_t
p()->cooldowns.butchery->adjust( -timespan_t::from_seconds( p()->talents.covering_fire->effectN( 2 ).base_value() ) );
}


if ( p()->tier_set.tww_s2_sv_2pc.ok() )
{
if ( p()->buffs.winning_streak->check() && rng().roll( 0.15 ) )
if ( p()->buffs.winning_streak->check() && rng().roll( p()->tier_set.tww_s2_sv_2pc->proc_chance() ) )
{
p()->buffs.winning_streak->expire(); // Consume 2pc buff
p()->buffs.strike_it_rich->trigger(); // Apply 4pc buff
}
}
}
};

struct wildfire_bomb_t: public wildfire_bomb_base_t
Expand Down

0 comments on commit b4080e2

Please sign in to comment.