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)