diff options
| author | 2021-01-24 17:20:46 +0200 | |
|---|---|---|
| committer | 2021-01-24 17:20:46 +0200 | |
| commit | 3356cf9cfa3d3a3f401c651217ecf2522e4fbde6 (patch) | |
| tree | fe5125c602fa9e2fbaf725be690574906b7e7a4e /bot/exts/evergreen/battleship.py | |
| parent | Decrease timeout from 120 sec to 30 sec (diff) | |
| parent | Merge pull request #415 from htudu/issue-337 (diff) | |
Merge branch 'master' into tic-tac-toe
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/evergreen/battleship.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/evergreen/battleship.py b/bot/exts/evergreen/battleship.py index 9bc374e6..fa3fb35c 100644 --- a/bot/exts/evergreen/battleship.py +++ b/bot/exts/evergreen/battleship.py @@ -140,7 +140,7 @@ class Game:      @staticmethod      def get_square(grid: Grid, square: str) -> Square:          """Grabs a square from a grid with an inputted key.""" -        index = ord(square[0]) - ord("A") +        index = ord(square[0].upper()) - ord("A")          number = int(square[1:])          return grid[number-1][index]  # -1 since lists are indexed from 0 | 
