Skip to content

Commit

Permalink
Fix cooldowns picker breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyt857 committed Jul 7, 2023
1 parent f3cec49 commit a75f191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/core/components/individual_sim_ui/cooldowns_picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class CooldownsPicker extends Component {
this.player = player;
this.cooldownPickers = [];

TypedEvent.onAny([this.player.currentSpellsAndAurasEmitter]).on(eventID => {
TypedEvent.onAny([this.player.cooldownsChangeEmitter, this.player.currentSpellsAndAurasEmitter]).on(eventID => {
this.update();
});
this.update();
Expand Down

0 comments on commit a75f191

Please sign in to comment.