mirror of
https://github.com/polyjitter/searchbot-discord.git
synced 2024-08-14 22:46:55 +00:00
removed confusing notice from about
This commit is contained in:
parent
f12ffa435e
commit
4280884b05
1 changed files with 4 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue