Revert "Merge remote-tracking branch 'origin/Development' into Development"

This reverts commit 59d46cb73c, reversing
changes made to 38681c5db0.
This commit is contained in:
2025-11-27 16:58:51 +01:00
parent 2936cc0b72
commit 40ddf08e2d

View File

@@ -8,7 +8,6 @@ public final class ReversiAI extends AI<Reversi> {
public Move findBestMove(Reversi game, int depth) {
Move[] moves = game.getLegalMoves();
int inty = (int)(Math.random() * moves.length-.5f);
if (moves.length == 0) return null;
return moves[inty];
}
}