diff --git a/src/backend/Move.java b/src/backend/Move.java index 271bc2d..0fbd089 100644 --- a/src/backend/Move.java +++ b/src/backend/Move.java @@ -12,7 +12,7 @@ public class Move { this.fromY = fromY; this.toX = toX; this.toY = toY; - this.capturedPiece = capturedPiece; + //this.capturedPiece = capturedPiece; } public Piece getPiece() { return piece; @@ -39,4 +39,5 @@ public class Move { return piece + ":("+ fromX + "," + fromY + ")-("+ toX + "," + toY + ")" + ( capturedPiece != null? "capturing "+ capturedPiece: ""); } // remove commit message + // return to work }