From 126e8e3c87832c01d5dd24c526187ff6ae5faea3 Mon Sep 17 00:00:00 2001 From: Kayla Glick Date: Mon, 10 Jun 2024 18:11:23 -0400 Subject: [PATCH] distinguish EM auras --- ui/core/proto_utils/action_id.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ui/core/proto_utils/action_id.ts b/ui/core/proto_utils/action_id.ts index 494729f0a5..c46a4726ba 100644 --- a/ui/core/proto_utils/action_id.ts +++ b/ui/core/proto_utils/action_id.ts @@ -272,7 +272,7 @@ export class ActionId { break; case 'Fireball': case 'Flamestrike': - if (this.tag == 1) name += ' (Blast Wave)'; + if (this.tag == 1) name += ' (Blast Wave)'; break; case 'Pyroblast': case 'Combustion': @@ -391,7 +391,7 @@ export class ActionId { break; case 'Lightning Shield': if (this.tag == 1) { - name += ' (Wasted)' + name += ' (Wasted)'; } break; case 'Moonfire': @@ -437,6 +437,13 @@ export class ActionId { name += ' (raid)'; } break; + case 'Elemental Mastery': + if (this.spellId === 64701) { + name = `${name} (Buff)`; + } else { + name = `${name} (Instant)`; + } + break; case 'Darkmoon Card: Crusade': if (this.tag == 1) { name += ' (Melee)';