Skip to content

Commit

Permalink
Add alias make/create as an alias to alias add & add to changelog (#3195
Browse files Browse the repository at this point in the history
)
  • Loading branch information
StephenDaDev authored Dec 19, 2022
1 parent b693b27 commit 11eef8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
however, insignificant breaking changes do not guarantee a major version bump, see the reasoning [here](https://github.com/kyb3r/modmail/issues/319). If you're a plugin developer, note the "BREAKING" section.

# [UNRELEASED]

### Fixed
- `?alias make/create` as aliases to `?alias add`. This improves continuity between the bot and its command structure.

# v4.0.2

Expand Down
2 changes: 1 addition & 1 deletion cogs/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ async def make_alias(self, name, value, action):
await self.bot.config.update()
return embed

@alias.command(name="add")
@alias.command(name="add", aliases=["create", "make"])
@checks.has_permissions(PermissionLevel.MODERATOR)
async def alias_add(self, ctx, name: str.lower, *, value):
"""
Expand Down

0 comments on commit 11eef8b

Please sign in to comment.