diff --git a/game/board.cpp b/game/board.cpp index 1176936..5bde1ad 100644 --- a/game/board.cpp +++ b/game/board.cpp @@ -239,8 +239,9 @@ int Board::checkRoundAux(const Matrix &iTilesMx, return 8; // Is the word an extension of another word? - if (!iTilesMx[row][col - 1].isEmpty() || - !iTilesMx[row][col + iRound.getWordLen()].isEmpty()) + if (checkJunction && + (!iTilesMx[row][col - 1].isEmpty() || + !iTilesMx[row][col + iRound.getWordLen()].isEmpty())) { return 1; }