Merge branch 'feature/tictactoe-game' of https://github.com/martinbogo/meshing-around into pr/198

This commit is contained in:
SpudGunMan
2025-10-06 14:08:49 -07:00
+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