From e8933634dbd61975e58685fc8ecf8c9ceed94e2c Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Fri, 28 Apr 2023 22:01:55 +0200 Subject: Fixed starting word could be one letter long --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index b54d070..eaf2a2a 100644 --- a/static/index.js +++ b/static/index.js @@ -179,7 +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 + if (x === 7 && y === 7 && placed.length > 1) 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) { -- cgit v1.2.3