mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-05 17:46:26 +02:00
Debug promotion
This commit is contained in:
parent
3ba7bd82d2
commit
bdb2963bc3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue