diff options
author | nil <niljo@airmail.cc> | 2024-12-18 17:53:17 +0100 |
---|---|---|
committer | nil <niljo@airmail.cc> | 2024-12-18 17:53:17 +0100 |
commit | 2303968dc24664d1fb4383d019420e7ddcf06b8a (patch) | |
tree | dfd0193a6cc1178c193ed1c6ccce0c427cf4f0fd /src/index.js | |
parent | 7b005bc02b1e73c71f8cb8f4e03b6fe6ff420c67 (diff) |
Diffstat (limited to 'src/index.js')
-rwxr-xr-x | src/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js index 5a376ac..4a3ef3f 100755 --- a/src/index.js +++ b/src/index.js @@ -1,10 +1,10 @@ import { prepareBoard } from "./board.js" -import { nextTurn } from "./engine/turns.js" +import { startTurn } from "./engine/turns.js" function start() { prepareBoard() - nextTurn() + startTurn() } |