From 0fab0c416ddf2c0e7e9e4937f89b0b4420b4a0b2 Mon Sep 17 00:00:00 2001 From: takonomura Date: Fri, 30 Oct 2020 22:39:33 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=AA=E3=83=90=E3=83=BC=E3=82=B7=E3=81=A7?= =?UTF-8?q?=E7=9B=B8=E6=89=8B=E3=81=AE=E3=82=BF=E3=83=BC=E3=83=B3=E3=81=A7?= =?UTF-8?q?=E3=82=82=E7=BD=AE=E3=81=8F=E3=81=93=E3=81=A8=E3=81=8C=E3=81=A7?= =?UTF-8?q?=E3=81=8D=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=20(#6777?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/pages/reversi/game.board.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/pages/reversi/game.board.vue b/src/client/pages/reversi/game.board.vue index c9d2528d3..ff530b1b1 100644 --- a/src/client/pages/reversi/game.board.vue +++ b/src/client/pages/reversi/game.board.vue @@ -231,7 +231,7 @@ export default defineComponent({ set(pos) { if (this.game.isEnded) return; if (!this.iAmPlayer) return; - if (!this.isMyTurn) return; + if (!this.isMyTurn()) return; if (!this.o.canPut(this.myColor, pos)) return; this.o.put(this.myColor, pos);