diff options
Diffstat (limited to 'bot/seasons')
| -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 07a19cde..e742d7d5 100644 --- a/bot/seasons/evergreen/minesweeper.py +++ b/bot/seasons/evergreen/minesweeper.py @@ -98,7 +98,7 @@ class Minesweeper(commands.Cog):      def get_cords(value1: str, value2: str) -> typing.Tuple[int, int]:          """Take in 2 values for the cords and turn them into numbers"""          if value1.isnumeric(): -            return int(value1) - 1, ord(value2.lower()) - 97 +            return ord(value2.lower()) - 97, int(value1) - 1          else:              return ord(value1.lower()) - 97, int(value2) - 1 | 
