diff options
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) | 
