Skip to content

Commit

Permalink
use isFromBurnout
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Mar 18, 2024
1 parent eb2026c commit 937e2ef
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SPELLS from 'common/SPELLS/evoker';
import { AnyEvent, BeginCastEvent, EventType, HasRelatedEvent } from 'parser/core/Events';
import { AnyEvent, BeginCastEvent, EventType } from 'parser/core/Events';
import EventsNormalizer from 'parser/core/EventsNormalizer';
import { BURNOUT_CONSUME } from './CastLinkNormalizer';
import { isFromBurnout } from './CastLinkNormalizer';
import Haste from 'parser/shared/modules/Haste';

/**
Expand Down Expand Up @@ -34,7 +34,7 @@ class LivingFlamePrePullNormalizer extends EventsNormalizer {
if (
event.type === EventType.Cast &&
event.ability.guid === SPELLS.LIVING_FLAME_CAST.id &&
!HasRelatedEvent(event, BURNOUT_CONSUME)
!isFromBurnout(event)
) {
fixedEvents.push({
...event,
Expand Down

0 comments on commit 937e2ef

Please sign in to comment.