diff options
author | 2021-01-16 20:33:47 +0200 | |
---|---|---|
committer | 2021-01-16 20:33:47 +0200 | |
commit | fb09472ddc9a52b4bcc78ce2f67f2ac768c8a8ec (patch) | |
tree | e85d24924ffec8e0be697a7a639f1f60a8142fc7 /bot/exts/evergreen/tic_tac_toe.py | |
parent | Fix 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.py | 2 |
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 |