diff --git a/aurora/models/moderation_types.py b/aurora/models/moderation_types.py index e1a261d..8b50df4 100644 --- a/aurora/models/moderation_types.py +++ b/aurora/models/moderation_types.py @@ -808,7 +808,7 @@ class Tempban(Ban): except ValueError: await ctx.send(content=error("Please provide a valid duration!"), ephemeral=True) - response_message = await ctx.send(f"{target.mention} has been {cls.verb} for {humanize_timedelta(parsed_time)}!\n{bold('Reason:')} {inline(reason)}") + response_message = await ctx.send(content=f"{target.mention} has been {cls.verb} for {humanize_timedelta(parsed_time)}!\n{bold('Reason:')} {inline(reason)}") if silent is False: try: @@ -1055,7 +1055,7 @@ class Slowmode(Type): duration=parsed_time, reason=None ) - await ctx.send(f"{ctx.author.mention} has {cls.verb} {target.mention} to {humanize_timedelta(parsed_time)}!\n{bold('Reason:')} {inline(reason)}") + await ctx.send(content=f"{ctx.author.mention} has {cls.verb} {target.mention} to {humanize_timedelta(parsed_time)}!\n{bold('Reason:')} {inline(reason)}") await log(ctx, moderation.id) return cls