diff options
| author | 2021-02-19 10:51:23 +0200 | |
|---|---|---|
| committer | 2021-02-19 10:51:23 +0200 | |
| commit | 0370f3677fa74467063f798e32e3728bb1183947 (patch) | |
| tree | 10033ae13809348fcb71043d2e0625f74e006271 | |
| parent | Error to load settings will send the traceback to the channel (diff) | |
Retain 'd' alias for threshold command
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/moderation/defcon.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/moderation/defcon.py b/bot/exts/moderation/defcon.py index 3ea6b971a..86dece518 100644 --- a/bot/exts/moderation/defcon.py +++ b/bot/exts/moderation/defcon.py @@ -156,7 +156,7 @@ class Defcon(Cog):          await ctx.send(embed=embed) -    @defcon_group.command(aliases=('t',)) +    @defcon_group.command(aliases=('t', 'd'))      @has_any_role(*MODERATION_ROLES)      async def threshold(          self, ctx: Context, threshold: Union[DurationDelta, int], expiry: Optional[Expiry] = None | 
