diff --git a/shortmute/shortmute.py b/shortmute/shortmute.py index d0edf8f..470bd37 100644 --- a/shortmute/shortmute.py +++ b/shortmute/shortmute.py @@ -235,7 +235,7 @@ class Shortmute(commands.Cog): @commands.guild_only() @commands.admin() async def shortmute_config_role_add(self, ctx: commands.Context, role: discord.Role = None): - """Adds roles to the /shortmute immune roles.""" + """Adds roles to the immune roles list.""" current_list = await self.config.guild(ctx.guild).immune_roles() if role: if role.id in current_list: @@ -252,7 +252,7 @@ class Shortmute(commands.Cog): @commands.guild_only() @commands.admin() async def shortmute_config_role_remove(self, ctx: commands.Context, role: discord.Role = None): - """Removes roles from the /shortmute immune roles.""" + """Removes roles from the immune roles list.""" current_list = await self.config.guild(ctx.guild).immune_roles() if role.id in current_list: current_list.remove(role.id)