Implement a least breaking approach to slash commands #39

Merged
Gnome-py merged 42 commits from 2.0 into 2.0 2021-09-18 23:28:11 +00:00
Showing only changes of commit 2a1dc8a069 - Show all commits

View File

@@ -475,4 +475,4 @@ class Context(discord.abc.Messageable, Generic[BotT]):
@discord.utils.copy_doc(Message.reply)
async def reply(self, content: Optional[str] = None, **kwargs: Any) -> Message:
return await self.message.reply(content, **kwargs)
return await self.send(content, reference=self.message, **kwargs) # type: ignore