diff options
Diffstat (limited to 'discord/ext/commands/bot.py')
| -rw-r--r-- | discord/ext/commands/bot.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 59a498d7..8814021b 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -638,7 +638,6 @@ class Bot(GroupMixin, discord.Client): if invoker in self.commands: command = self.commands[invoker] self.dispatch('command', command, ctx) - ctx.command = command try: yield from command.invoke(ctx) except CommandError as e: |