Skip to content

Commit eb8b936

Browse files
committed
Improve about command style
1 parent c59724c commit eb8b936

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cogs/utility.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -160,17 +160,17 @@ async def changelog(self, ctx):
160160
p = PaginatorSession(ctx, *changelog.embeds)
161161
await p.run()
162162

163-
@commands.command()
163+
@commands.command(aliases=['bot', 'info'])
164164
@trigger_typing
165165
async def about(self, ctx):
166166
"""Shows information about the bot."""
167167
em = discord.Embed(color=discord.Color.green(), timestamp=datetime.datetime.utcnow())
168-
em.set_author(name='Mod Mail - Information', icon_url=self.bot.user.avatar_url)
168+
em.set_author(name='Mod Mail - About', icon_url=self.bot.user.avatar_url)
169169
em.set_thumbnail(url=self.bot.user.avatar_url)
170170

171-
em.description = 'This is an open source discord bot made by kyb3r and '\
172-
'improved upon suggestions by the users! This bot serves as a means for members to '\
173-
'easily communicate with server leadership in an organised manner.'
171+
em.description = 'This is an open source discord bot that serves'\
172+
' as a means for members to easily communicate with'\
173+
' server leadership in an organised manner.'
174174

175175
try:
176176
async with self.bot.session.get('https://api.modmail.tk/metadata') as resp:

0 commit comments

Comments
 (0)