aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts
diff options
context:
space:
mode:
authorGravatar vcokltfre <[email protected]>2021-04-11 19:12:10 +0100
committerGravatar GitHub <[email protected]>2021-04-11 19:12:10 +0100
commit652e306064efb451660e7c08dc88aeafdcf7360e (patch)
treeebe8d8e9d295c015784284bddc20d5c201ded4ba /bot/exts
parentfix: use ctx.prefix when suggesting the help command (diff)
chore: add time as alias of timed
Co-authored-by: Matteo Bertucci <[email protected]>
Diffstat (limited to 'bot/exts')
-rw-r--r--bot/exts/evergreen/timed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/timed.py b/bot/exts/evergreen/timed.py
index 604204b0..635ccb32 100644
--- a/bot/exts/evergreen/timed.py
+++ b/bot/exts/evergreen/timed.py
@@ -16,7 +16,7 @@ class TimedCommands(commands.Cog):
return await ctx.bot.get_context(msg)
- @commands.command(name="timed", aliases=["t"])
+ @commands.command(name="timed", aliases=["time", "t"])
async def timed(self, ctx: commands.Context, *, command: str) -> None:
"""Time the command execution of a command."""
new_ctx = await self.create_execution_context(ctx, command)