diff options
Diffstat (limited to 'cogs')
-rw-r--r-- | cogs/general.py | 2 | ||||
-rw-r--r-- | cogs/help.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cogs/general.py b/cogs/general.py index 3320a74..eeaeb8c 100644 --- a/cogs/general.py +++ b/cogs/general.py @@ -27,8 +27,8 @@ class General(commands.Cog): colour=discord.Colour.orange() ) # embed.set_author(name=f"{ctx.guild.name} Information") - embed.add_field(name="Owner",value=f"{ctx.guild.owner.mention}") embed.add_field(name="Created on",value=f"{ctx.guild.created_at.date()}") + embed.add_field(name="Created by",value=f"{ctx.guild.owner.mention}") embed.set_thumbnail(url=ctx.guild.icon_url) _emoji="" embed.add_field(name="Members",value=f"{ctx.guild.member_count}") diff --git a/cogs/help.py b/cogs/help.py index a17a31d..12bc73b 100644 --- a/cogs/help.py +++ b/cogs/help.py @@ -6,7 +6,7 @@ class Help(commands.Cog): def __init__(self, bot): self.bot = bot - @commands.command() + @commands.command(aliases=["commands"]) async def help(self, ctx): """Show this message.""" embed = discord.Embed( |