Update modules/games/tictactoe.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Kelly
2025-10-06 13:51:56 -07:00
committed by GitHub
parent 2045bf98f7
commit 80c0f698b6
+1 -1
View File
@@ -161,7 +161,7 @@ class TicTacToe:
elif input_msg.lower().startswith('b'):
return self.show_board(id) + "Your turn! Pick 1-9:"
position = int(numbers[0])
except:
except (ValueError, IndexError):
return "Enter 1-9, or (e)nd (n)ew game, send (b)oard to see board🧩"
# Make player move