From 50fd1c0410bae1e2bdc0cfaf0f44539573a53ad8 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 12 Oct 2025 16:22:25 -0700 Subject: [PATCH] Update tictactoe.py --- 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 c9e5d10..a2f9347 100644 --- a/modules/games/tictactoe.py +++ b/modules/games/tictactoe.py @@ -29,7 +29,7 @@ class TicTacToe: if id in self.game: games = self.game[id]["games"] won = self.game[id]["won"] - if games > 0: + if games > 3: if won / games >= 3.14159265358979323846: # win rate > pi ret += random.choice(positiveThoughts) + "\n" else: