Skip to content

Commit

Permalink
Update variant.cpp
Browse files Browse the repository at this point in the history
corrected a syntax error that concerned the initial fen position involving musketeer_cannon (forgot _)
  • Loading branch information
musketeerchess authored Dec 21, 2023
1 parent f724e6a commit 6c24f96
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/variant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -742,12 +742,10 @@ namespace {
//"********/rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR/******** w KQkq - 0 1"
v->startFen = "********/rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR/******** w KQkq - 0 1";
v->commitGates = true;
v->promotionPieceTypes = {LEOPARD, MUSKETEER CANNON, QUEEN, ROOK, BISHOP, KNIGHT}; // refer to PieceToCharTable to know the piece combination that can be promoted apart from the classic chess pieces
v->promotionPieceTypes = {LEOPARD, MUSKETEER_CANNON, QUEEN, ROOK, BISHOP, KNIGHT}; // refer to PieceToCharTable to know the piece combination that can be promoted apart from the classic chess pieces
return v;
}
}



// S-House
// A hybrid variant of S-Chess and Crazyhouse.
// Pieces in the pocket can either be gated or dropped.
Expand Down

0 comments on commit 6c24f96

Please sign in to comment.