summaryrefslogtreecommitdiff
path: root/static/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/index.js')
-rw-r--r--static/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/index.js b/static/index.js
index 0d10935..4b80ab5 100644
--- a/static/index.js
+++ b/static/index.js
@@ -179,6 +179,7 @@ let CW = function(){
if (x>0) { // we check if we are connected on the left of the first letter
connected ||= CWDATA.board[y][x-1] != "";
}
+ if (x === 7 && y === 7) connected = true; // starting tile
// check if the placed letters are aligned and complete connection checks on the first and last letters
let direction = undefined;
if (x === lastx) {
@@ -207,6 +208,7 @@ let CW = function(){
} else {
x++;
}
+ if (x === 7 && y === 7) connected = true; // starting tile
if (placed[i].x === x && placed[i].y === y) {
// check around this letter
if (direction === "down") {