aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/connect_four.py
diff options
context:
space:
mode:
authorGravatar vcokltfre <[email protected]>2021-04-19 21:09:10 +0100
committerGravatar vcokltfre <[email protected]>2021-04-19 21:09:10 +0100
commit227d0a7705e08b74deb9b95ec4f643b1d0a0fcdd (patch)
treeadb2e186f50860f96afeed57158974c0401c8635 /bot/exts/evergreen/connect_four.py
parentchore(evergreen): format each cog load docstring the same way (diff)
chore(evergreen): make usage of . at sentence ends consistent
Diffstat (limited to 'bot/exts/evergreen/connect_four.py')
-rw-r--r--bot/exts/evergreen/connect_four.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/connect_four.py b/bot/exts/evergreen/connect_four.py
index fbb13780..df2a913a 100644
--- a/bot/exts/evergreen/connect_four.py
+++ b/bot/exts/evergreen/connect_four.py
@@ -355,7 +355,7 @@ class ConnectFour(commands.Cog):
self.games.remove(game)
except Exception:
# End the game in the event of an unforeseen error so the players aren't stuck in a game
- await ctx.send(f"{ctx.author.mention} {user.mention if user else ''} An error occurred. Game failed")
+ await ctx.send(f"{ctx.author.mention} {user.mention if user else ''} An error occurred. Game failed.")
if game in self.games:
self.games.remove(game)
raise