Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorm4 committed Mar 3, 2025
1 parent 329e047 commit 78190c1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);

Expand All @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/common/SPELLS/druid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 78190c1

Please sign in to comment.