From 5c008101667c0d14e4213797ce0a22151f293dd0 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Sun, 11 Oct 2020 08:21:54 -0700 Subject: [PATCH] Use bot name instead of "Red" in `[p]info` and `[p]restart` (#4470) --- redbot/core/core_commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index a9203de11..bb263ac24 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -385,7 +385,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): @commands.command() async def info(self, ctx: commands.Context): - """Shows info about Red.""" + """Shows info about [botname].""" embed_links = await ctx.embed_requested() author_repo = "https://github.com/Twentysix26" org_repo = "https://github.com/Cog-Creators" @@ -1537,9 +1537,9 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): @commands.command(name="restart") @checks.is_owner() async def _restart(self, ctx: commands.Context, silently: bool = False): - """Attempts to restart Red. + """Attempts to restart [botname]. - Makes Red quit with exit code 26. + Makes [botname] quit with exit code 26. The restart is not guaranteed: it must be dealt with by the process manager in use.""" with contextlib.suppress(discord.HTTPException):