aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/tic_tac_toe.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2021-01-16 20:33:47 +0200
committerGravatar GitHub <[email protected]>2021-01-16 20:33:47 +0200
commitfb09472ddc9a52b4bcc78ce2f67f2ac768c8a8ec (patch)
treee85d24924ffec8e0be697a7a639f1f60a8142fc7 /bot/exts/evergreen/tic_tac_toe.py
parentFix grammar (diff)
Add missing a article
Co-authored-by: ChrisJL <[email protected]>
Diffstat (limited to 'bot/exts/evergreen/tic_tac_toe.py')
-rw-r--r--bot/exts/evergreen/tic_tac_toe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/tic_tac_toe.py b/bot/exts/evergreen/tic_tac_toe.py
index db84427c..4b76f94d 100644
--- a/bot/exts/evergreen/tic_tac_toe.py
+++ b/bot/exts/evergreen/tic_tac_toe.py
@@ -220,7 +220,7 @@ class Game:
self.current, self.next = self.next, self.current
if not self.winner:
self.draw = True
- await self.ctx.send("It's DRAW!")
+ await self.ctx.send("It's a DRAW!")
self.over = True