diff --git a/Gwendolyn.py b/Gwendolyn.py index f9679d7..1b880de 100644 --- a/Gwendolyn.py +++ b/Gwendolyn.py @@ -216,10 +216,11 @@ async def on_message(message): title, content, thumbnail = funcs.findWikiPage(command) if title != "": funcs.logThis("Sending the embedded message") + content += "\n[Læs mere](https://senkulpa.fandom.com/da/wiki/"+title.replace(" ","_")+")" embed = discord.Embed(title = title, description = content, colour=0xDEADBF) if thumbnail != "": embed.set_thumbnail(url=thumbnail) - + await message.channel.send(embed = embed) else: await message.channel.send(content)