[!HOTFIX] 4-4 금수 중복 계산 해결

This commit is contained in:
Sehyeon 2025-03-31 09:59:51 +09:00
parent c09872d382
commit 00aa35d98b

View File

@ -44,10 +44,7 @@ public class DoubleFourCheck : ForbiddenDetectorBase
// 이 방향에서 실제 열린 4가 있는지 확인 // 이 방향에서 실제 열린 4가 있는지 확인
if (HasRealOpenFour(board, row, col, dir1, dir2)) if (HasRealOpenFour(board, row, col, dir1, dir2))
{ {
if (HasRealOpenFour(board, row, col, dir1, dir2)) openFourDirections.Add(i);
{
openFourDirections.Add(i);
}
} }
} }