We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a303cf5 commit 181f4e8Copy full SHA for 181f4e8
1 file changed
engine/class_modules/sc_hunter.cpp
@@ -4936,8 +4936,7 @@ struct black_arrow_t final : public kill_shot_base_t
4936
p()->cooldowns.bleak_powder->start();
4937
}
4938
4939
- // The chance is not in spell data and is hardcoded into the tooltip
4940
- if ( p()->talents.banshees_mark.ok() && rng().roll( 0.25 ) && p()->cooldowns.banshees_mark->up() )
+ if ( p()->talents.banshees_mark.ok() && rng().roll( p()->talents.banshees_mark->effectN( 2 ).percent() ) && p()->cooldowns.banshees_mark->up() )
4941
{
4942
p()->actions.a_murder_of_crows->execute_on_target( s->target );
4943
p()->cooldowns.banshees_mark->start();
0 commit comments