Update TicTacToe_GameRules.java

This commit is contained in:
Aaronvtr
2021-03-28 20:46:10 +02:00
committed by GitHub
parent 4ea9ee92c8
commit 46f347acd7

View File

@@ -140,7 +140,7 @@ 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;