aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/connect_four.py
diff options
context:
space:
mode:
authorGravatar Shivansh-007 <[email protected]>2021-01-30 17:21:11 +0530
committerGravatar Shivansh-007 <[email protected]>2021-01-30 17:21:11 +0530
commita563d3ae23c1c1eff01a284e0510bdc364cc415a (patch)
tree03a45dc3a269ae49d73a031d51daae3ad31805cd /bot/exts/evergreen/connect_four.py
parentFix lint issues (diff)
Fix misleading game_over docstring
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 51d1adc3..19067277 100644
--- a/bot/exts/evergreen/connect_four.py
+++ b/bot/exts/evergreen/connect_four.py
@@ -89,7 +89,7 @@ class Game:
await self.message.edit(content=None, embed=embed)
async def game_over(self, winner: discord.user, loser: discord.user) -> None:
- """Removes games from list of current games and announces to public chat."""
+ """Announces to public chat."""
await self.channel.send(f"Game Over! {winner.mention} won against {loser.mention}")
await self.print_grid()