File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export const boardOrientationAtom = atom(true);
12
12
export const showBestMoveArrowAtom = atom ( true ) ;
13
13
export const showPlayerMoveIconAtom = atom ( true ) ;
14
14
15
- export const engineNameAtom = atom < EngineName > ( EngineName . Stockfish16_1Lite ) ;
15
+ export const engineNameAtom = atom < EngineName > ( EngineName . Stockfish17Lite ) ;
16
16
export const engineDepthAtom = atom ( 16 ) ;
17
17
export const engineMultiPvAtom = atom ( 3 ) ;
18
18
export const evaluationProgressAtom = atom ( 0 ) ;
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ import { atom } from "jotai";
6
6
export const gameAtom = atom ( new Chess ( ) ) ;
7
7
export const gameDataAtom = atom < CurrentPosition > ( { } ) ;
8
8
export const playerColorAtom = atom < Color > ( Color . White ) ;
9
- export const enginePlayNameAtom = atom < EngineName > (
10
- EngineName . Stockfish16_1Lite
11
- ) ;
9
+ export const enginePlayNameAtom = atom < EngineName > ( EngineName . Stockfish17Lite ) ;
12
10
export const engineSkillLevelAtom = atom < number > ( 1 ) ;
13
11
export const isGameInProgressAtom = atom ( false ) ;
You can’t perform that action at this time.
0 commit comments