Fixes
authorBenjamin Auder <benjamin.auder@somewhere>
Wed, 15 Apr 2020 02:44:13 +0000 (04:44 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Wed, 15 Apr 2020 02:44:13 +0000 (04:44 +0200)
client/src/variants/Makruk.js
client/src/variants/Shogi.js

index 2da534f..9f9c37b 100644 (file)
@@ -104,7 +104,7 @@ export class MakrukRules extends ChessRules {
   }
 
   isAttackedByBishop(sq, color) {
-    const forward = (this.turn == 'w' ? 1 : -1);
+    const forward = (color == 'w' ? 1 : -1);
     return this.isAttackedBySlideNJump(
       sq,
       color,
index 7e827bc..da9a7c4 100644 (file)
@@ -268,7 +268,7 @@ export class ShogiRules extends ChessRules {
 
   // Modified to take promotions into account
   getSlideNJumpMoves([x, y], steps, options) {
-    const options = options || {};
+    options = options || {};
     const color = this.turn;
     const oneStep = options.oneStep;
     const forcePromoteOnLastRank = options.force;