From 542a7b3cb26ce27bdfd7e132872f43851d6dfc38 Mon Sep 17 00:00:00 2001 From: Red-GitHubBot <88117545+Red-GitHubBot@users.noreply.github.com> Date: Sat, 16 Oct 2021 00:48:49 +0200 Subject: [PATCH] [3.4] Add a tick on traceback command when it's sent to DMs (#5353) (#5397) * add a `tick` when sent to dm. * confused :tm: * did i learn now? :P * i'm not confused anymore :3 (cherry picked from commit b8535ee53e8bc45aa289946facabcf54bae30c24) Co-authored-by: MAX <63972751+maxbooiii@users.noreply.github.com> Co-authored-by: MAX <63972751+maxbooiii@users.noreply.github.com> --- redbot/core/core_commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index b2e9a76c0..59883f17d 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -1469,6 +1469,8 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): "Either you blocked me or you disabled DMs in this server." ) return + if not public: + await ctx.tick() else: await ctx.send(_("No exception has occurred yet."))