diff options
author | 2019-08-13 22:26:25 +0200 | |
---|---|---|
committer | 2019-08-13 22:26:25 +0200 | |
commit | 95bea08cb90975962ceb25af7180334d25254999 (patch) | |
tree | e693a082b35816453c893e34db0fa8ef7c420829 | |
parent | Merge remote-tracking branch 'origin/minesweeper' into minesweeper (diff) |
Apply suggestions from code review
Co-Authored-By: Thomas Petersson <[email protected]>
-rw-r--r-- | bot/seasons/evergreen/minesweeper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/minesweeper.py b/bot/seasons/evergreen/minesweeper.py index e005bbb9..b742512d 100644 --- a/bot/seasons/evergreen/minesweeper.py +++ b/bot/seasons/evergreen/minesweeper.py @@ -239,7 +239,7 @@ class Minesweeper(commands.Cog): board: GameBoard = game.board for x, y in coordinates: - # reveal_one returns True if the revealed cell is a bomb or the player won., ending the game + # reveal_one returns True if the revealed cell is a bomb or the player won, ending the game if await self.reveal_one(ctx, revealed, board, x, y): await self.update_boards(ctx) del self.games[ctx.author.id] |