spam minder v2

This commit is contained in:
Ticho Hidding
2025-10-27 17:21:50 +01:00
parent caa812217f
commit 6fb248bec4
3 changed files with 0 additions and 6 deletions

View File

@@ -224,9 +224,7 @@ public final class TicTacToeGame {
} catch (InterruptedException _) {}
} else {
final Game.Move move;
IO.println(information.players[0].name + " " + information.players[1].name);
if (information.players[1].name.equalsIgnoreCase("pism")) {
IO.println("got worst move");
move = ai.findWorstMove(game,9);
}else{
move = ai.findBestMove(game, information.players[0].computerDifficulty);

View File

@@ -56,7 +56,6 @@ public final class SendChallengeView extends View {
final Button cancelButton = button();
cancelButton.setText(AppContext.getString("cancel"));
cancelButton.setOnAction(_ -> {
IO.println("tried to click cancel");
ViewStack.pop(); });
final List<Node> nodes = new ArrayList<>();