Skip to content

Commit

Permalink
[shaman] Elemental T30 2p timer starts on proc, not on first attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed May 27, 2023
1 parent f5526f6 commit 3da9b70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/class_modules/sc_shaman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10014,7 +10014,6 @@ void shaman_t::create_buffs()
if ( next_proc <= sim->current_time() && !t30_proc_possible )
{
t30_proc_possible = true;
last_t30_proc = sim->current_time();
}
if ( t30_proc_possible && !buff.stormkeeper->up() )
{
Expand All @@ -10023,10 +10022,11 @@ void shaman_t::create_buffs()
sk_during_cast = true;
}
buff.stormkeeper->trigger( 1 );
last_t30_proc = sim->current_time();
t30_proc_possible = false;
}
} )
->set_tick_zero(true);
} )
->set_tick_zero(true);
buff.t30_4pc_ele = make_buff( this, "primal_fracture", spell.t30_4pc_ele );
buff.primordial_wave = make_buff( this, "primordial_wave", find_spell( 327164 ) )
->set_trigger_spell( talent.primordial_wave );
Expand Down

0 comments on commit 3da9b70

Please sign in to comment.