diff options
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/evergreen/minesweeper.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bot/exts/evergreen/minesweeper.py b/bot/exts/evergreen/minesweeper.py index 776501a9..f08bad6f 100644 --- a/bot/exts/evergreen/minesweeper.py +++ b/bot/exts/evergreen/minesweeper.py @@ -29,6 +29,12 @@ MESSAGE_MAPPING = { log = logging.getLogger(__name__) +class UserNotPlayingError(Exception): + """Will raised when user try to use game commands when not playing.""" + + pass + + class CoordinateConverter(commands.Converter): """Converter for Coordinates.""" |