diff --git a/app/dragon-bot.py b/app/dragon-bot.py index 86f24299..ed578d5d 100644 --- a/app/dragon-bot.py +++ b/app/dragon-bot.py @@ -240,7 +240,7 @@ async def on_message(message): await client.send_message(message.channel, help_methods.parse_message(message.content)) else: description = """Below you can see all the commands I know. -If you need further help with something join our Support Server. \n +If you need further help with something join our [Support Server](http://discordapp.com). \n **Have a nice day!** COMMANDS {} \n @@ -248,9 +248,9 @@ COMMANDS **Examples:** `!help dog` for detailed help for the dog command \n **Useful links:** -johnbest.me""".format(help_methods.parse_message(message.content)) +[Support Server](http://discordapp.com), [Twitter](http://twitter.com)""".format(help_methods.parse_message(message.content)) - embed = discord.Embed(title=None, description=description, color=0x428bca, type="rich") + embed = discord.Embed(description=description, color=0x428bca, type="rich") embed.set_author(name="Hello! I'm {}".format(client.user.name), icon_url=client.user.default_avatar_url) await client.send_message(message.channel, embed=embed)