diff --git a/OOP_2B1_Project/src/backend/Board.java b/OOP_2B1_Project/src/backend/Board.java index d83475e..e20e825 100644 --- a/OOP_2B1_Project/src/backend/Board.java +++ b/OOP_2B1_Project/src/backend/Board.java @@ -384,7 +384,7 @@ public class Board implements Cloneable { if (pieceAtDestination.isWhite() != pieceToMove.isWhite()) { if (move.getCapturedPiece() != null && move.getCapturedPiece() != pieceAtDestination) { - System.err.println("Warning: Normal capture - Move.capturedPiece mismatch with piece at destination."); + } pieces.remove(pieceAtDestination); } else {