From a80b660e21d2eaa12f776f07ddd7bd0f9d7b2573 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Tue, 16 Nov 2021 23:31:21 +0100 Subject: [PATCH] Fix cannibal promotions --- base_rules.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/base_rules.js b/base_rules.js index 715f4e0..4808d0c 100644 --- a/base_rules.js +++ b/base_rules.js @@ -1543,11 +1543,19 @@ export default class ChessRules { addPawnMoves([x1, y1], [x2, y2], moves, promotions) { let finalPieces = ["p"]; const color = this.getColor(x1, y1); + const oppCol = C.GetOppCol(color); const lastRank = (color == "w" ? 0 : this.size.x - 1); if (x2 == lastRank && (!this.options["rifle"] || this.board[x2][y2] == "")) { // promotions arg: special override for Hiddenqueen variant - if (promotions) finalPieces = promotions; + if ( + this.options["cannibal"] && + this.board[x2][y2] != "" && + this.getColor(x2, y2) == oppCol + ) { + finalPieces = [this.getPieceType(x2, y2)]; + } + else if (promotions) finalPieces = promotions; else if (this.pawnSpecs.promotions) finalPieces = this.pawnSpecs.promotions; } -- 2.44.0