Updated Commentary

Members now only need manage guild permissions in order to setup modmail
pull/8/head
sgoudham 4 years ago
parent 5edea99bff
commit 5b849d77a7

@ -282,14 +282,16 @@ class Guild(Cog):
f"\nPlease do **{ctx.prefix}help** to find out how to set Modmail again!") f"\nPlease do **{ctx.prefix}help** to find out how to set Modmail again!")
@group(invoke_without_command=True, usage="`[argument...]`") @group(invoke_without_command=True, usage="`[argument...]`")
@has_permissions(administrator=True)
@bot_has_permissions(administrator=True) @bot_has_permissions(administrator=True)
async def modmail(self, ctx): async def modmail(self, ctx):
"""Setup/Update/Delete Modmail System""" """
Show Current Modlogs Channel (If Setup)
Setup/Update/Delete Modmail System
"""
pass pass
@modmail.command(name="setup") @modmail.command(name="setup")
@has_permissions(administrator=True) @has_permissions(manage_guild=True)
@bot_has_permissions(administrator=True) @bot_has_permissions(administrator=True)
async def mmsetup(self, ctx, channelID: int): async def mmsetup(self, ctx, channelID: int):
""" """
@ -391,7 +393,7 @@ class Guild(Cog):
return return
@modmail.command(name="update") @modmail.command(name="update")
@has_permissions(administrator=True) @has_permissions(manage_guild=True)
@bot_has_permissions(administrator=True) @bot_has_permissions(administrator=True)
async def mmupdate(self, ctx, channelID: int): async def mmupdate(self, ctx, channelID: int):
""" """
@ -453,7 +455,7 @@ class Guild(Cog):
return return
@modmail.command(name="delete") @modmail.command(name="delete")
@has_permissions(administrator=True) @has_permissions(manage_guild=True)
@bot_has_permissions(administrator=True) @bot_has_permissions(administrator=True)
async def mmdelete(self, ctx): async def mmdelete(self, ctx):
"""Delete the Entire Modmail System from the Guild""" """Delete the Entire Modmail System from the Guild"""

Loading…
Cancel
Save