From cbcf3b8619cb7ee0424609b4ae740123eabd481c Mon Sep 17 00:00:00 2001 From: Lim0_C Date: Fri, 14 Mar 2025 10:24:40 +0900 Subject: [PATCH] =?UTF-8?q?DO-8=20=EB=B3=91=ED=95=A9=20=EC=A0=84=20?= =?UTF-8?q?=EC=BB=A4=EB=B0=8B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Script/Game/GameLogic.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/Script/Game/GameLogic.cs b/Assets/Script/Game/GameLogic.cs index 0f97d4d..ab4a325 100644 --- a/Assets/Script/Game/GameLogic.cs +++ b/Assets/Script/Game/GameLogic.cs @@ -58,6 +58,8 @@ public class GameLogic : MonoBehaviour _stoneController.SetStoneState(Enums.StoneState.LastPositioned, row, col); _board[row, col] = Enums.PlayerType.PlayerA; LastNSelectedSetting(row, col); + + SetState(Enums.PlayerType.PlayerB); } if (playerType == Enums.PlayerType.PlayerB) { @@ -66,6 +68,7 @@ public class GameLogic : MonoBehaviour _board[row, col] = Enums.PlayerType.PlayerB; LastNSelectedSetting(row, col); + SetState(Enums.PlayerType.PlayerA); } } }