aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/error_handler.py
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2020-04-16 14:59:59 -0700
committerGravatar GitHub <[email protected]>2020-04-16 14:59:59 -0700
commit394d681630b6cfbccb404eb5110ac94b7c0e41d4 (patch)
treeadfeac6f64ed5ffc2f4e728d29bce4501199924c /bot/exts/evergreen/error_handler.py
parentTransition towards `wait_until_guild_available` use (diff)
parentMerge pull request #396 from ks129/keyerrors-fix (diff)
Merge branch 'master' into wait-until-guild-ready
Diffstat (limited to 'bot/exts/evergreen/error_handler.py')
-rw-r--r--bot/exts/evergreen/error_handler.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/evergreen/error_handler.py b/bot/exts/evergreen/error_handler.py
index 33b1a3f2..459a2b2d 100644
--- a/bot/exts/evergreen/error_handler.py
+++ b/bot/exts/evergreen/error_handler.py
@@ -9,7 +9,7 @@ from sentry_sdk import push_scope
from bot.constants import Colours, ERROR_REPLIES, NEGATIVE_REPLIES
from bot.utils.decorators import InChannelCheckFailure, InMonthCheckFailure
-from bot.utils.exceptions import BrandingError
+from bot.utils.exceptions import BrandingError, UserNotPlayingError
log = logging.getLogger(__name__)
@@ -103,6 +103,10 @@ class CommandErrorHandler(commands.Cog):
await ctx.send(embed=self.error_embed("You are not authorized to use this command.", NEGATIVE_REPLIES))
return
+ if isinstance(error, UserNotPlayingError):
+ await ctx.send("Game not found.")
+ return
+
with push_scope() as scope:
scope.user = {
"id": ctx.author.id,