From cd0d6749ea70361856b9a6961c48bbb2b7c57868 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 19 Apr 2022 22:09:33 -0400 Subject: [PATCH] [commands] Fix Context.reply not working with expired interactions --- discord/ext/commands/context.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index c0b02c288..5562c958a 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -541,7 +541,10 @@ class Context(discord.abc.Messageable, Generic[BotT]): :class:`~discord.Message` The message that was sent. """ - return await self.send(content, reference=self.message, **kwargs) + if self.interaction is None: + return await self.send(content, reference=self.message, **kwargs) + else: + return await self.send(content, **kwargs) async def defer(self, *, ephemeral: bool = False) -> None: """|coro|