Skip to content

Commit

Permalink
distinguish EM auras
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jun 10, 2024
1 parent 2b85225 commit 126e8e3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions ui/core/proto_utils/action_id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down Expand Up @@ -391,7 +391,7 @@ export class ActionId {
break;
case 'Lightning Shield':
if (this.tag == 1) {
name += ' (Wasted)'
name += ' (Wasted)';
}
break;
case 'Moonfire':
Expand Down Expand Up @@ -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)';
Expand Down

0 comments on commit 126e8e3

Please sign in to comment.