Skip to content

Commit

Permalink
[Frost DK] Fix segfault with TWW2 2pc
Browse files Browse the repository at this point in the history
  • Loading branch information
nyterage committed Jan 16, 2025
1 parent b4ef864 commit 78c8d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_death_knight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14374,7 +14374,7 @@ void death_knight_t::create_buffs()
"winning_streak", spell.winning_streak_frost )
->set_chance( 1.01 )
->set_expire_callback( [ this ]( buff_t*, int, timespan_t ) {
if ( !sim->event_mgr.canceled )
if ( !sim->event_mgr.canceled && sets->has_set_bonus( DEATH_KNIGHT_FROST, TWW2, B4 ) )
{
buffs.murderous_frenzy->trigger();
double old_mult = active_spells.frostscythe_proc->base_multiplier;
Expand Down

0 comments on commit 78c8d5b

Please sign in to comment.