From e77b017edf487f3d88cda4f127c41579b65cb479 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 9 Oct 2017 20:12:06 +0900 Subject: [PATCH] Fix bug --- src/common/othello.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/othello.ts b/src/common/othello.ts index aa53dee46..858fc3315 100644 --- a/src/common/othello.ts +++ b/src/common/othello.ts @@ -144,7 +144,7 @@ export default class Othello { // 右上 iterate = createIterater(); - for (let c = 0, i = 1; i < Math.min(BOARD_SIZE - targetx, targety); c++, i++) { + for (let c = 0, i = 1; i <= Math.min(BOARD_SIZE - targetx, targety); c++, i++) { if (iterate(targetx + i, targety - i)) { res.push([1, c]); break; @@ -198,7 +198,7 @@ export default class Othello { // 左上 iterate = createIterater(); - for (let c = 0, i = 1; i < Math.min(targetx, targety); c++, i++) { + for (let c = 0, i = 1; i <= Math.min(targetx, targety); c++, i++) { if (iterate(targetx - i, targety - i)) { res.push([7, c]); break;