Skip to content

Commit

Permalink
also fix mind sear display tag
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Oct 22, 2023
1 parent f08cb11 commit c574bb8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ui/core/proto_utils/action_id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,15 @@ export class ActionId {
name += ' (3 Tick)';
}
break;
case 'Mind Sear':
if (this.tag == 1) {
name += ' (1 Tick)';
} else if (this.tag == 2) {
name += ' (2 Tick)';
} else if (this.tag == 3) {
name += ' (3 Tick)';
}
break;
case 'Shattering Throw':
if (this.tag === playerIndex) {
name += ` (self)`;
Expand Down

0 comments on commit c574bb8

Please sign in to comment.