Skip to content

Commit

Permalink
[Frost DK] Fix Segfault below level 19
Browse files Browse the repository at this point in the history
  • Loading branch information
nyterage committed May 17, 2024
1 parent adaf4af commit 9f2ccf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion engine/class_modules/sc_death_knight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7253,7 +7253,10 @@ struct remorseless_winter_t final : public death_knight_spell_t

// Periodic behavior handled by the buff
dot_duration = base_tick_time = 0_ms;
add_child( damage );
if ( p->spec.remorseless_winter->ok() )
{
add_child( damage );
}
}

void execute() override
Expand Down

0 comments on commit 9f2ccf8

Please sign in to comment.