diff --git a/discordbot/titanembeds/commands.py b/discordbot/titanembeds/commands.py index 0aa6f2f..f851d6b 100644 --- a/discordbot/titanembeds/commands.py +++ b/discordbot/titanembeds/commands.py @@ -115,4 +115,7 @@ class Commands(): color = 7964363, description = embed_description ) - await message.channel.send(embed=embed) \ No newline at end of file + if message.guild.me.permissions_in(message.channel).embed_links: + await message.channel.send(embed=embed) + else: + await message.channel.send("__**Currently Online Embed Members**__\n" + embed_description) \ No newline at end of file