Skip to content

Commit 2a4c09c

Browse files
authored
[Warlock] Reverse ordering for Jackpot on Darkglare (simulationcraft#9982)
1 parent c38c0d8 commit 2a4c09c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

engine/class_modules/warlock/sc_warlock_actions.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2426,21 +2426,21 @@ using namespace helpers;
24262426
{
24272427
warlock_spell_t::execute();
24282428

2429-
p()->warlock_pet_list.darkglares.spawn( p()->talents.summon_darkglare->duration() );
2430-
2431-
timespan_t darkglare_extension = timespan_t::from_seconds( p()->talents.summon_darkglare->effectN( 2 ).base_value() );
2432-
2433-
darkglare_extension_helper( darkglare_extension );
2434-
2435-
p()->buffs.soul_rot->extend_duration( p(), darkglare_extension ); // This dummy buff is active while Soul Rot is ticking
2436-
24372429
if ( active_2pc( TWW2 ) )
24382430
{
24392431
p()->buffs.jackpot_affliction->execute();
24402432
p()->buffs.jackpot_affliction->predict();
24412433
p()->procs.jackpot_affliction->occur();
24422434
helpers::trigger_jackpot_ua( p() );
24432435
}
2436+
2437+
p()->warlock_pet_list.darkglares.spawn( p()->talents.summon_darkglare->duration() );
2438+
2439+
timespan_t darkglare_extension = timespan_t::from_seconds( p()->talents.summon_darkglare->effectN( 2 ).base_value() );
2440+
2441+
darkglare_extension_helper( darkglare_extension );
2442+
2443+
p()->buffs.soul_rot->extend_duration( p(), darkglare_extension ); // This dummy buff is active while Soul Rot is ticking
24442444
}
24452445

24462446
void darkglare_extension_helper( timespan_t darkglare_extension )

0 commit comments

Comments
 (0)