diff options
| author | 2025-11-07 10:44:16 -0600 | |
|---|---|---|
| committer | 2025-11-07 17:44:16 +0100 | |
| commit | 73eca6c688e8bdd138b274c655f8eb0d565819d4 (patch) | |
| tree | eb935cfdfe7a5d39b937f932cb7cccb0c7fea234 /bot | |
| parent | Fix regex for 'spooky' trigger pattern (#1705) (diff) | |
* Add `http` as additional alias for `http_status`
* Rename command instead
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/exts/fun/status_codes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/status_codes.py b/bot/exts/fun/status_codes.py index cf544a19..f0605142 100644 --- a/bot/exts/fun/status_codes.py +++ b/bot/exts/fun/status_codes.py @@ -27,8 +27,8 @@ class HTTPStatusCodes(commands.Cog): self.bot = bot @commands.group( - name="http_status", - aliases=("status", "httpstatus"), + name="http", + aliases=("http_status", "httpstatus", "status"), invoke_without_command=True, ) async def http_status_group(self, ctx: commands.Context, code: int) -> None: |