private static void GetCheckGuess(PacketHeader packetheader, Connection connection, int[] cp)
        {
            //this will print out the number of correct positions..
            int correctPlaces = _game.HandleGuesses(_numColumns, cp[0], cp[1]);

            //checks for wins
            if (correctPlaces == _numColumns)
            {
                _hasWon = true;
            }
            else
            {
                _canTakeNextGuess = true;
            }
        }