diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 372b7bc887c..6c5edf05210 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -3233,18 +3233,14 @@ async def _set_status_custom(self, ctx: commands.Context, *, name: str = None): status = ctx.bot.guilds[0].me.status if len(ctx.bot.guilds) > 0 else discord.Status.online if name: if len(name) > 128: - await ctx.send( - _("The maximum length of custom descriptions is 128 characters.") - ) + await ctx.send(_("The maximum length of custom statuses is 128 characters.")) return activity = discord.Activity(name=name, state=name, type=discord.ActivityType.custom) else: activity = None await ctx.bot.change_presence(status=status, activity=activity) if activity: - await ctx.send( - _("Status set to `{name}`.").format(name=name) - ) + await ctx.send(_("Custom status set to `{name}`.").format(name=name)) else: await ctx.send(_("Custom status cleared."))