From d551b4579d224bd3b123fc1e16e30f4731728090 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 26 Oct 2022 23:16:20 +0200 Subject: Allow for placing the first word --- static/index.js | 2 ++ 1 file changed, 2 insertions(+) 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") { -- cgit v1.2.3