Skip to content

Commit

Permalink
first seen cast could be from burnout which is instant
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Mar 30, 2024
1 parent a14b0eb commit 6b46c43
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { isFromBurnout } from 'analysis/retail/evoker/devastation/modules/normalizers/CastLinkNormalizer';
import SPELLS from 'common/SPELLS/evoker';
import { AnyEvent, BeginCastEvent, EventType } from 'parser/core/Events';
import EventsNormalizer from 'parser/core/EventsNormalizer';
Expand Down Expand Up @@ -37,8 +38,8 @@ class LivingFlamePrePullNormalizer extends EventsNormalizer {
isRealCast(event) &&
event.sourceID === this.owner.selectedCombatant.id
) {
// First cast found is not living flame
if (event.ability.guid !== SPELLS.LIVING_FLAME_CAST.id) {
// First cast found is not living flame or was instant
if (event.ability.guid !== SPELLS.LIVING_FLAME_CAST.id || isFromBurnout(event)) {
return true;
}

Expand Down

0 comments on commit 6b46c43

Please sign in to comment.