From 00aa35d98b45cc0d7bf0c38df8ebfe4fc772847c Mon Sep 17 00:00:00 2001
From: Sehyeon <ksh1837@naver.com>
Date: Mon, 31 Mar 2025 09:59:51 +0900
Subject: [PATCH] =?UTF-8?q?[!HOTFIX]=204-4=20=EA=B8=88=EC=88=98=20?=
 =?UTF-8?q?=EC=A4=91=EB=B3=B5=20=EA=B3=84=EC=82=B0=20=ED=95=B4=EA=B2=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Assets/Script/Renju/KSH_Renju/DoubleFourCheck.cs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/Assets/Script/Renju/KSH_Renju/DoubleFourCheck.cs b/Assets/Script/Renju/KSH_Renju/DoubleFourCheck.cs
index b9900f9..b03986b 100644
--- a/Assets/Script/Renju/KSH_Renju/DoubleFourCheck.cs
+++ b/Assets/Script/Renju/KSH_Renju/DoubleFourCheck.cs
@@ -44,10 +44,7 @@ public class DoubleFourCheck : ForbiddenDetectorBase
             // 이 방향에서 실제 열린 4가 있는지 확인
             if (HasRealOpenFour(board, row, col, dir1, dir2))
             {
-                if (HasRealOpenFour(board, row, col, dir1, dir2))
-                {
-                    openFourDirections.Add(i);
-                }
+                openFourDirections.Add(i);
             }
         }