From cabff7d2698af490f1f437efdacecf41a92ea256 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 26 Aug 2020 06:10:37 +0100 Subject: [PATCH] Updated usage for commands --- cogs/guild.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/cogs/guild.py b/cogs/guild.py index 35abdf8b..969355ed 100644 --- a/cogs/guild.py +++ b/cogs/guild.py @@ -176,7 +176,7 @@ class Guild(Cog): """Printing out that Cog is ready on startup""" print(f"{self.__class__.__name__} Cog has been loaded\n-----") - @group(name="rolepersist", invoke_without_command=True, case_insensitive=True, usage="``") + @group(name="rolepersist", invoke_without_command=True, case_insensitive=True, usage="``") @has_permissions(manage_guild=True) @bot_has_permissions(manage_roles=True) async def roles_persist(self, ctx): @@ -216,11 +216,11 @@ class Guild(Cog): else: await self.bot.generate_embed(ctx, desc=f"**Role Persist is already disabled within {ctx.guild}!**") - @group(name="modlogs", invoke_without_command=True, case_insensitive=True, usage="`[argument...]`") + @group(name="modlogs", invoke_without_command=True, case_insensitive=True, usage="``") @has_permissions(manage_guild=True) async def modlogs(self, ctx): """ - Show current modlogs channel + Log updates in your server! (Nicknames/Deleted Msgs/etc!) """ ml_channel = self.bot.get_modlog_for_guild(ctx.guild.id) @@ -355,12 +355,11 @@ class Guild(Cog): f"\nDo **{ctx.prefix}help modlogs** to setup Modlogs again!" await self.bot.generate_embed(ctx, desc=text) - @group(name="modmail", invoke_without_command=True, case_insensitive=True, usage="`[argument...]`") + @group(name="modmail", invoke_without_command=True, case_insensitive=True, usage="``") @bot_has_permissions(manage_channels=True) async def mod_mail(self, ctx): """ - Show Current Modlogs Channel (If Setup) - Setup/Update/Delete Modmail System + Modmail! Allow your members to send mail to the staff team! """ pass