Prevent click redraws while AI is thinking

This commit is contained in:
Elnu 2023-03-16 12:38:59 -07:00
parent acb9e05e07
commit 851c2f401d

View file

@ -189,6 +189,7 @@ public class Board {
}
void handleMouseUp(int x, int y) {
if (aiThinking) return;
// Get board coordinate of mouse release
BoardCoordinate newCoordinate = new ScreenCoordinate(x, y).toBoard();
// Only do something if new coordinate is different from the originating coordinate