diff --git a/lib/chess_bloc/chess_position.dart b/lib/chess_bloc/chess_position.dart index 252c71d..0d1aede 100644 --- a/lib/chess_bloc/chess_position.dart +++ b/lib/chess_bloc/chess_position.dart @@ -35,14 +35,6 @@ class ChessPosition { pos[ChessCoordinate(i, 2)] = ChessPiece(ChessPieceClass.pawn, ChessColor.white); } - pos[ChessCoordinate(1, 7)] = - ChessPiece(ChessPieceClass.pawn, ChessColor.white); - pos[ChessCoordinate(2, 7)] = - ChessPiece(ChessPieceClass.pawn, ChessColor.white); - pos[ChessCoordinate(8, 4)] = - ChessPiece(ChessPieceClass.king, ChessColor.white); - pos[ChessCoordinate(8, 6)] = - ChessPiece(ChessPieceClass.king, ChessColor.black); pos[ChessCoordinate(1, 8)] = ChessPiece(ChessPieceClass.rook, ChessColor.black);