From faf1ad4846d98e630ccb390d718937e14bcfcbca Mon Sep 17 00:00:00 2001 From: Kreusada <67752638+Kreusada@users.noreply.github.com> Date: Sat, 12 Jun 2021 16:52:06 +0100 Subject: [PATCH] [Dev] Add `ctx.tick()` on successful debugs (#5107) --- redbot/core/dev_commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/redbot/core/dev_commands.py b/redbot/core/dev_commands.py index 25ad62dff..22c224da4 100644 --- a/redbot/core/dev_commands.py +++ b/redbot/core/dev_commands.py @@ -158,6 +158,7 @@ class Dev(commands.Cog): self._last_result = result result = self.sanitize_output(ctx, str(result)) + await ctx.tick() await ctx.send_interactive(self.get_pages(result), box_lang="py") @commands.command(name="eval")