From b8a7a665665f4317ef733176d5b6fef072080a4f Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Thu, 29 Aug 2019 18:18:43 -0700 Subject: [PATCH] [Core] Inviteset public and perms help cleanup (#2963) * [Core] Inviteset public and perms help cleanup * Towncrier entry --- changelog.d/2963.bugfix.rst | 1 + redbot/core/core_commands.py | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 changelog.d/2963.bugfix.rst diff --git a/changelog.d/2963.bugfix.rst b/changelog.d/2963.bugfix.rst new file mode 100644 index 000000000..a6fe397e2 --- /dev/null +++ b/changelog.d/2963.bugfix.rst @@ -0,0 +1 @@ +[Core] Inviteset public and perms help string cleanup \ No newline at end of file diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index fabd4cd78..50e66854b 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -446,8 +446,7 @@ class Core(commands.Cog, CoreLogic): @inviteset.command() async def public(self, ctx, confirm: bool = False): """ - Define if the command should be accessible\ - for the average users. + Define if the command should be accessible for the average user. """ if await self.bot.db.invite_public(): await self.bot.db.invite_public.set(False) @@ -479,13 +478,13 @@ class Core(commands.Cog, CoreLogic): Make the bot create its own role with permissions on join. The bot will create its own role with the desired permissions\ - when he join a new server. This is a special role that can't be\ + when it joins a new server. This is a special role that can't be\ deleted or removed from the bot. - For that, you need to give a valid permissions level. + For that, you need to provide a valid permissions level. You can generate one here: https://discordapi.com/permissions.html - Please note that you might need the two factor authentification for\ + Please note that you might need two factor authentification for\ some permissions. """ await self.bot.db.invite_perm.set(level)