Skip to content

Commit

Permalink
[Gear] Mop Remix - Explosive Barrage was bugfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Saeldur committed May 19, 2024
1 parent 9f2ccf8 commit b8ac04b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engine/player/unique_gear_dragonflight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11008,7 +11008,7 @@ void explosive_barrage( special_effect_t& effect )
{
proc_spell_t::execute();

// Logs show 6 missiles fired in 3 batches of 2.
// Logs show 3 missiles.
for ( size_t i = 0; i < 3; i++ )
{
make_event( sim, 150_ms * i, [ this ] {
Expand All @@ -11018,7 +11018,6 @@ void explosive_barrage( special_effect_t& effect )
return;

barrage->execute_on_target( tl[ rng().range( tl.size() ) ] );
barrage->execute_on_target( tl[ rng().range( tl.size() ) ] );
} );
}
}
Expand Down

0 comments on commit b8ac04b

Please sign in to comment.