Ignore any non-letter character

This commit is contained in:
foo 2016-12-19 06:31:51 +00:00
parent f95f43ad56
commit 92391f3899

View File

@ -196,7 +196,7 @@ public class GridFactory {
// System.out.println("[" + word + "] Placing @ " + x + "," + y + " going " + direction);
char[][] tempgrid = clone2d(grid);
for( char c : word.toUpperCase().toCharArray() ) {
if(c==' ') continue;
if(!Character.isLetter(c)) continue;
if(grid[y][x] != Character.UNASSIGNED) {
if (grid[y][x] != c) {
throw new CouldNotPlaceWordException();