mirror of
				https://github.com/fooflington/wordsearch.git
				synced 2025-11-03 22:09:03 +00:00 
			
		
		
		
	Ignore any non-letter character
This commit is contained in:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user