Debug promotion

This commit is contained in:
Loic Guegan 2022-12-26 22:08:05 +01:00
parent 3ba7bd82d2
commit bdb2963bc3

View file

@ -130,7 +130,7 @@ bool ChessArbiter::Play(std::string move, char promote) {
if(moved.piece == 'p' && dst[1]=='1'){
board.RemovePiece(dst);
board.AddPiece(tolower(promote),dst);
SAN+="="+promote;
SAN+="="+toupper(promote);
} else if(dst[1]=='8'){
board.RemovePiece(dst);
board.AddPiece(toupper(promote),dst);