removed confusing notice from about

This commit is contained in:
Adriene Hutchins 2020-03-20 11:24:03 -04:00
parent f12ffa435e
commit 4280884b05
1 changed files with 4 additions and 3 deletions

View File

@ -96,13 +96,14 @@ class Core(commands.Cog):
async def about(self, ctx):
"""Returns information about this bot."""
msg = f"__**{self.bot.user.name}**__ - _{self.bot.description}_\n\n"
msg += f"This instance by **{self.bot.appinfo.owner}.**\n\n"
msg = (
f"__**{self.bot.user.name}**__ - _{self.bot.description}_\n\n"
f"This instance by **{self.bot.appinfo.owner}.**\n\n"
)
if self.bot.repo:
msg += f"**Source Code:** _<{self.bot.repo}>_\n"
if self.bot.support_server:
msg += f"**Support Server:** _<{self.bot.support_server}>_\n\n"
msg += "_Note: Please attempt to contact the hoster of any separate instances before this server._\n"
msg += f"_See **{ctx.prefix}**`help` for help, `invite` to add the bot, and `stats` for statistics._"
await ctx.send(msg)