aboutsummaryrefslogtreecommitdiff
path: root/discord/ext
diff options
context:
space:
mode:
Diffstat (limited to 'discord/ext')
-rw-r--r--discord/ext/commands/context.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index 3cf851c6..d129e819 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -322,3 +322,8 @@ class Context(discord.abc.Messageable):
return None
except CommandError as e:
await cmd.on_help_command_error(self, e)
+
+ async def reply(self, content=None, **kwargs):
+ return await self.message.reply(content, **kwargs)
+
+ reply.__doc__ = discord.Message.reply.__doc__