From 78190c1a443ce54a8516bdbe7232fe748f03dcf3 Mon Sep 17 00:00:00 2001 From: trevorm4 Date: Mon, 3 Mar 2025 12:48:59 -0800 Subject: [PATCH] Fix spelling --- .../druid/restoration/modules/items/TWW2TierSet.tsx | 10 +++++----- .../restoration/normalizers/TWW2TierSetNormalizer.tsx | 4 ++-- src/common/SPELLS/druid.ts | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/analysis/retail/druid/restoration/modules/items/TWW2TierSet.tsx b/src/analysis/retail/druid/restoration/modules/items/TWW2TierSet.tsx index 05589d9fb7..b3bf252e6e 100644 --- a/src/analysis/retail/druid/restoration/modules/items/TWW2TierSet.tsx +++ b/src/analysis/retail/druid/restoration/modules/items/TWW2TierSet.tsx @@ -83,11 +83,11 @@ export default class TWW2TierSet extends Analyzer.withDependencies({ this.has4pc = this.selectedCombatant.has4PieceByTier(TIERS.TWW2); this.addEventListener( - Events.heal.by(SELECTED_PLAYER).spell(SPELLS.NSURANCE_HOT_DRUID), + Events.heal.by(SELECTED_PLAYER).spell(SPELLS.INSURANCE_HOT_DRUID), this.onInsuranceHotHeal, ); this.addEventListener( - Events.heal.by(SELECTED_PLAYER).spell(SPELLS.RESTO_DRUID_INSURANCE_PROC), + Events.heal.by(SELECTED_PLAYER).spell(SPELLS.INSURANCE_PROC_DRUID), this.onInsuranceProcHeal, ); @@ -101,15 +101,15 @@ export default class TWW2TierSet extends Analyzer.withDependencies({ ); this.addEventListener( - Events.applybuff.by(SELECTED_PLAYER).spell(SPELLS.NSURANCE_HOT_DRUID), + Events.applybuff.by(SELECTED_PLAYER).spell(SPELLS.INSURANCE_HOT_DRUID), this.onInsuranceApply, ); this.addEventListener( - Events.refreshbuff.by(SELECTED_PLAYER).spell(SPELLS.NSURANCE_HOT_DRUID), + Events.refreshbuff.by(SELECTED_PLAYER).spell(SPELLS.INSURANCE_HOT_DRUID), this.onInsuranceRefresh, ); this.addEventListener( - Events.removebuff.by(SELECTED_PLAYER).spell(SPELLS.NSURANCE_HOT_DRUID), + Events.removebuff.by(SELECTED_PLAYER).spell(SPELLS.INSURANCE_HOT_DRUID), this.onInsuranceRemove, ); this.addEventListener(Events.fightend, this.onFightEnd); diff --git a/src/analysis/retail/druid/restoration/normalizers/TWW2TierSetNormalizer.tsx b/src/analysis/retail/druid/restoration/normalizers/TWW2TierSetNormalizer.tsx index 48d65b8fa4..63958879a8 100644 --- a/src/analysis/retail/druid/restoration/normalizers/TWW2TierSetNormalizer.tsx +++ b/src/analysis/retail/druid/restoration/normalizers/TWW2TierSetNormalizer.tsx @@ -11,7 +11,7 @@ const HOT_FROM_INSURANCE = 'HoT from Insurance'; const EVENT_LINKS: EventLink[] = [ { linkRelation: INSURANCE_FROM_BLOOM, - linkingEventId: SPELLS.NSURANCE_HOT_DRUID.id, + linkingEventId: SPELLS.INSURANCE_HOT_DRUID.id, linkingEventType: [EventType.ApplyBuff, EventType.RefreshBuff], referencedEventId: SPELLS.LIFEBLOOM_BLOOM_HEAL.id, referencedEventType: EventType.Heal, @@ -27,7 +27,7 @@ const EVENT_LINKS: EventLink[] = [ SPELLS.WILD_GROWTH.id, ], linkingEventType: [EventType.ApplyBuff, EventType.RefreshBuff], - referencedEventId: SPELLS.NSURANCE_HOT_DRUID.id, + referencedEventId: SPELLS.INSURANCE_HOT_DRUID.id, referencedEventType: [EventType.RemoveBuff, EventType.RefreshBuff], forwardBufferMs: BUFFER_MS, backwardBufferMs: BUFFER_MS, diff --git a/src/common/SPELLS/druid.ts b/src/common/SPELLS/druid.ts index 83a6519d67..69d8ac82b1 100644 --- a/src/common/SPELLS/druid.ts +++ b/src/common/SPELLS/druid.ts @@ -507,13 +507,13 @@ const spells = { }, // HoT (heal and buff) from Resto Druid TWW S2 tier set. - NSURANCE_HOT_DRUID: { + INSURANCE_HOT_DRUID: { id: 1215515, name: 'Insurance!', icon: 'inv_10_inscription2_scroll2_color5', }, // low health proc (heal) from Resto Druid TWW S2 tier set. - RESTO_DRUID_INSURANCE_PROC: { + INSURANCE_PROC_DRUID: { id: 1215518, name: 'Insurance!', icon: 'inv_10_inscription2_scroll2_color5',