From 717bbccea324a170ea7782568b320a0b38e80267 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 12 Oct 2025 16:25:43 -0700 Subject: [PATCH] Omg --- modules/games/tictactoe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/games/tictactoe.py b/modules/games/tictactoe.py index a2f9347..22e638b 100644 --- a/modules/games/tictactoe.py +++ b/modules/games/tictactoe.py @@ -156,7 +156,7 @@ class TicTacToe: if winner == X: g["won"] += 1 return "🎉You won! (n)ew (e)nd" - elif winner == X: + elif winner == O: return "🤖Bot wins! (n)ew (e)nd" else: return "🤝Tie, The only winning move! (n)ew (e)nd"