From de14b388d527cc1742004898b8373c3821e20b5a Mon Sep 17 00:00:00 2001 From: dodikk Date: Sat, 19 Dec 2015 16:58:39 +0200 Subject: [PATCH] [GUI] Enabled automatic turns feature --- Reversi/Assets/BoardEventsHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reversi/Assets/BoardEventsHandler.cs b/Reversi/Assets/BoardEventsHandler.cs index 514ae1b..e5a441d 100644 --- a/Reversi/Assets/BoardEventsHandler.cs +++ b/Reversi/Assets/BoardEventsHandler.cs @@ -463,7 +463,7 @@ private void populateLabels() #endregion - private bool IS_OPPONENT_PLAYER_AI = false; + private bool IS_OPPONENT_PLAYER_AI = true; private const int BOARD_SIZE = 8; private const string CELL_TAG = "FieldCell";