From 9af05c593f57060d2532d80556ab1bc306660dc0 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 20 Aug 2022 15:50:26 +0300 Subject: fix: do not allow pawn jump through pieces --- src/pieces.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/pieces.h') diff --git a/src/pieces.h b/src/pieces.h index f975190..fd0abaf 100644 --- a/src/pieces.h +++ b/src/pieces.h @@ -35,9 +35,6 @@ int kingMoves[] = { 17, 16, 15, 1, -1, -15, -16, -17, 0 }; int pawnMoves[] = { 16, 0 }; int blackPawnMoves[] = { -16, 0 }; -int newPawnMoves[] = { 32, 16, 0 }; -int newBlackPawnMoves[] = { -32, -16, 0 }; - int pawnAttackMoves[] = { 17, 15, 0 }; int blackPawnAttackMoves[] = { -17, -15, 0 }; -- cgit v1.2.3