summaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
authornil <niljo@airmail.cc>2024-12-18 17:53:17 +0100
committernil <niljo@airmail.cc>2024-12-18 17:53:17 +0100
commit2303968dc24664d1fb4383d019420e7ddcf06b8a (patch)
treedfd0193a6cc1178c193ed1c6ccce0c427cf4f0fd /src/index.js
parent7b005bc02b1e73c71f8cb8f4e03b6fe6ff420c67 (diff)
progressHEADmaster
Diffstat (limited to 'src/index.js')
-rwxr-xr-xsrc/index.js4
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()
}