forked from cswimr/SeaCogs
fix(moderation): fixed incorrect string
This commit is contained in:
parent
bfad13a40c
commit
0f16b0eee9
1 changed files with 1 additions and 1 deletions
|
@ -1531,7 +1531,7 @@ class Moderation(commands.Cog):
|
|||
async def moderationset_permissions(self, ctx: commands.Context):
|
||||
"""Toggle whether the bot will check for discord permissions."""
|
||||
await self.config.guild(ctx.guild).use_discord_permissions.set(not await self.config.guild(ctx.guild).use_discord_permissions())
|
||||
await ctx.send(f"DM users setting set to {await self.config.guild(ctx.guild).use_discord_permissions()}")
|
||||
await ctx.send(f"Use Discord Permissions setting set to {await self.config.guild(ctx.guild).use_discord_permissions()}")
|
||||
|
||||
@moderationset.command(name="logchannel")
|
||||
@checks.admin()
|
||||
|
|
Loading…
Reference in a new issue