misc(aurora): fixed an incorrect string
This commit is contained in:
parent
37bae2eeb3
commit
aae4370868
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ class Softban(Type):
|
|||
pass
|
||||
|
||||
await ctx.guild.ban(target, reason=f"{str.title(cls.verb)} by {ctx.author.id} for: {reason}", delete_message_seconds=delete_messages_seconds)
|
||||
await ctx.guild.unban(target, reason=f"Softban by {ctx.author.id} for: {reason}")
|
||||
await ctx.guild.unban(target, reason=f"{str.title(cls.verb)} by {ctx.author.id} for: {reason}")
|
||||
moderation = await Moderation.log(
|
||||
bot,
|
||||
ctx.guild.id,
|
||||
|
|
Loading…
Reference in a new issue