Update tictactoe.py

This commit is contained in:
SpudGunMan
2025-10-12 16:22:25 -07:00
parent ae89788ea4
commit 50fd1c0410
+1 -1
View File
@@ -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: