summaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
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()
}