Browse Source

[commands] Fix Context.from_interaction ignoring command_failed

pull/8429/head
Rapptz 3 years ago
parent
commit
6ab6b2cb96
  1. 1
      discord/ext/commands/context.py

1
discord/ext/commands/context.py

@ -295,6 +295,7 @@ class Context(discord.abc.Messageable, Generic[BotT]):
command=command, # type: ignore # this will be a hybrid command, technically
)
interaction._baton = ctx
ctx.command_failed = interaction.command_failed
return ctx
async def invoke(self, command: Command[CogT, P, T], /, *args: P.args, **kwargs: P.kwargs) -> T:

Loading…
Cancel
Save