diff --git a/Chase.GUI/GameForm.cs b/Chase.GUI/GameForm.cs index 29c1933..199144a 100644 --- a/Chase.GUI/GameForm.cs +++ b/Chase.GUI/GameForm.cs @@ -227,16 +227,16 @@ private void ClickTile(int index) { // Select a source tile selectedFromTile = index; + } - // If the move we need to make is filling in points after a capture - if (moves[0].Increment > 0) - { - Move move = moves.FirstOrDefault(x => x.ToIndex == selectedFromTile); + // If the move we need to make is filling in points after a capture + if (moves[0].Increment > 0) + { + Move move = moves.FirstOrDefault(x => x.ToIndex == index); - if (move != null) - { - MakeMove(move); - } + if (move != null) + { + MakeMove(move); } } }