Modmail command is now ~modmail instead of ~mmsetup

"modmail set" is now "modmail setup"
pull/8/head
sgoudham 4 years ago
parent efc41828d4
commit 0086de29ee

@ -152,12 +152,12 @@ class Modmail(commands.Cog, command_attrs=dict(hidden=True)):
self.anon = None self.anon = None
@commands.group(invoke_without_command=True) @commands.group(invoke_without_command=True)
async def mmsetup(self, ctx): async def modmail(self, ctx):
pass pass
@mmsetup.command() @modmail.command()
async def set(self, ctx, channelID: int): async def setup(self, ctx, channelID: int):
"""Set modmail system""" """Setup modmail system"""
# Retrieve a list of channel id's in the guild # Retrieve a list of channel id's in the guild
channels = [channel.id for channel in ctx.guild.channels] channels = [channel.id for channel in ctx.guild.channels]
@ -246,7 +246,7 @@ class Modmail(commands.Cog, command_attrs=dict(hidden=True)):
await ctx.send("**Invalid Channel ID. Aborting Process...**") await ctx.send("**Invalid Channel ID. Aborting Process...**")
return return
@mmsetup.command() @modmail.command()
async def update(self, ctx, channelID: int): async def update(self, ctx, channelID: int):
"""Update modmail system""" """Update modmail system"""
@ -297,7 +297,7 @@ class Modmail(commands.Cog, command_attrs=dict(hidden=True)):
await ctx.send("**Invalid Channel ID. Aborting Process...**") await ctx.send("**Invalid Channel ID. Aborting Process...**")
return return
@mmsetup.command() @modmail.command()
async def delete(self, ctx): async def delete(self, ctx):
"""Delete modmail system""" """Delete modmail system"""

Loading…
Cancel
Save