diff options
| author | 2021-03-01 02:23:46 -0800 | |
|---|---|---|
| committer | 2021-03-01 02:23:46 -0800 | |
| commit | 58c37361d0a322b308869492d50f2008ae497b3d (patch) | |
| tree | fc268e8983f130be5ccb43ce98d0add8b275af31 | |
| parent | Add alias !tban for !tempban (diff) | |
Add !superstar and !unsuperstar aliases for !superstarify
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/moderation/infraction/superstarify.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/moderation/infraction/superstarify.py b/bot/exts/moderation/infraction/superstarify.py index ffc470c54..704dddf9c 100644 --- a/bot/exts/moderation/infraction/superstarify.py +++ b/bot/exts/moderation/infraction/superstarify.py @@ -104,7 +104,7 @@ class Superstarify(InfractionScheduler, Cog):              await self.reapply_infraction(infraction, action) -    @command(name="superstarify", aliases=("force_nick", "star", "starify")) +    @command(name="superstarify", aliases=("force_nick", "star", "starify", "superstar"))      async def superstarify(          self,          ctx: Context, @@ -183,7 +183,7 @@ class Superstarify(InfractionScheduler, Cog):              )              await ctx.send(embed=embed) -    @command(name="unsuperstarify", aliases=("release_nick", "unstar", "unstarify")) +    @command(name="unsuperstarify", aliases=("release_nick", "unstar", "unstarify", "unsuperstar"))      async def unsuperstarify(self, ctx: Context, member: Member) -> None:          """Remove the superstarify infraction and allow the user to change their nickname."""          await self.pardon_infraction(ctx, "superstar", member) | 
