From 6ab6b2cb961581a7022f908b3bebfa5498305682 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 30 Aug 2022 05:08:11 -0400 Subject: [PATCH] [commands] Fix Context.from_interaction ignoring command_failed --- discord/ext/commands/context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 616cab9ad..989af3140 100644 --- a/discord/ext/commands/context.py +++ b/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: