diff --git a/funcs/games/hex.py b/funcs/games/hex.py index 7cc5274..6711670 100644 --- a/funcs/games/hex.py +++ b/funcs/games/hex.py @@ -194,7 +194,7 @@ class HexGame(): if game == None: sendMessage = "There's no game in this channel" self.bot.log("There was no game going on") - elif not (position[0].isalpha() and position[1].isnumeric() and len(position) == 2): + elif not (position[0].isalpha() and position[1:].isnumeric() and len(position) in [2, 3]): sendMessage = "The position must be a letter followed by a number." self.bot.log(f"The position was not valid, {position}") else: