From edfb07b1a6ad225a3a01e205ceb69c0bcff6a377 Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Wed, 15 Apr 2020 04:56:51 +0200
Subject: [PATCH] Fix Shogi

---
 client/src/variants/Shogi.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/client/src/variants/Shogi.js b/client/src/variants/Shogi.js
index da9a7c4c..f684a279 100644
--- a/client/src/variants/Shogi.js
+++ b/client/src/variants/Shogi.js
@@ -114,7 +114,7 @@ export class ShogiRules extends ChessRules {
     let counts = new Array(14);
     for (let i = 0; i < V.RESERVE_PIECES.length; i++) {
       counts[i] = this.reserve["w"][V.RESERVE_PIECES[i]];
-      counts[6 + i] = this.reserve["b"][V.RESERVE_PIECES[i]];
+      counts[7 + i] = this.reserve["b"][V.RESERVE_PIECES[i]];
     }
     return counts.join("");
   }
@@ -466,7 +466,7 @@ export class ShogiRules extends ChessRules {
     return (
       this.isAttackedBySlideNJump(sq, color, V.P_ROOK, V.steps[V.ROOK]) ||
       this.isAttackedBySlideNJump(
-        sq, color, V.DRAGON, V.steps[V.BISHOP], "oneStep")
+        sq, color, V.P_ROOK, V.steps[V.BISHOP], "oneStep")
     );
   }
 
@@ -474,7 +474,7 @@ export class ShogiRules extends ChessRules {
     return (
       this.isAttackedBySlideNJump(sq, color, V.P_BISHOP, V.steps[V.BISHOP]) ||
       this.isAttackedBySlideNJump(
-        sq, color, V.DRAGON, V.steps[V.ROOK], "oneStep")
+        sq, color, V.P_BISHOP, V.steps[V.ROOK], "oneStep")
     );
   }
 
-- 
2.44.0