X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fvariants%2FSuicide.js;h=05fb19c3d1a9d756517f0ee8ec3223d0cef1fd48;hb=7e8a7ea1cb66adb4a987badfb0a3c2f99a21bd0a;hp=ecb2aef146e525c0ffc8a8173919bc952518a2df;hpb=e50a802531b99829c533f22ecd21e359e7e1e049;p=vchess.git diff --git a/client/src/variants/Suicide.js b/client/src/variants/Suicide.js index ecb2aef1..05fb19c3 100644 --- a/client/src/variants/Suicide.js +++ b/client/src/variants/Suicide.js @@ -3,6 +3,7 @@ import { ArrayFun } from "@/utils/array"; import { shuffle } from "@/utils/alea"; export class SuicideRules extends ChessRules { + static get HasFlags() { return false; } @@ -50,12 +51,11 @@ export class SuicideRules extends ChessRules { // Stop at the first capture found (if any) atLeastOneCapture() { const color = this.turn; - const oppCol = V.GetOppCol(color); for (let i = 0; i < V.size.x; i++) { for (let j = 0; j < V.size.y; j++) { if ( this.board[i][j] != V.EMPTY && - this.getColor(i, j) != oppCol && + this.getColor(i, j) == color && this.getPotentialMovesFrom([i, j]).some(m => m.vanish.length == 2) ) { return true; @@ -166,4 +166,5 @@ export class SuicideRules extends ChessRules { " w 0 -" ); } + };