diff --git a/Server/src/game/TicTacToe_GameRules.java b/Server/src/game/TicTacToe_GameRules.java index 4b24963..1dd6958 100644 --- a/Server/src/game/TicTacToe_GameRules.java +++ b/Server/src/game/TicTacToe_GameRules.java @@ -140,8 +140,8 @@ public class TicTacToe_GameRules { if (sum == 3 || sum == -3){ startWin = new Point(0, column); endWin = new Point(2, column); - return true; - } + return true; //187 + } } return false; } @@ -154,4 +154,4 @@ public class TicTacToe_GameRules { return new Point[]{startWin, endWin}; } -} \ No newline at end of file +}