Skip to content

Commit

Permalink
No low-prio commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed May 27, 2024
1 parent 9660699 commit c4a2195
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ class Handler {
[Command.FEN]: { fn: this.onFen.bind(this), split: true, lowPrio: false },
[Command.WPLAYER]: { fn: this.onPlayer.bind(this), split: false, lowPrio: false },
[Command.BPLAYER]: { fn: this.onPlayer.bind(this), split: false, lowPrio: false },
[Command.WPV]: { fn: this.onPV.bind(this), split: true, lowPrio: true },
[Command.BPV]: { fn: this.onPV.bind(this), split: true, lowPrio: true },
[Command.WTIME]: { fn: this.onTime.bind(this), split: true, lowPrio: true },
[Command.BTIME]: { fn: this.onTime.bind(this), split: true, lowPrio: true },
[Command.WPV]: { fn: this.onPV.bind(this), split: true, lowPrio: false },
[Command.BPV]: { fn: this.onPV.bind(this), split: true, lowPrio: false },
[Command.WTIME]: { fn: this.onTime.bind(this), split: true, lowPrio: false },
[Command.BTIME]: { fn: this.onTime.bind(this), split: true, lowPrio: false },
[Command.WMOVE]: { fn: this.onMove.bind(this), split: true, lowPrio: false },
[Command.BMOVE]: { fn: this.onMove.bind(this), split: true, lowPrio: false },
[Command.SITE]: { fn: this.onSite.bind(this), split: false, lowPrio: false },
Expand Down

0 comments on commit c4a2195

Please sign in to comment.