Typing while getting wiki
This commit is contained in:
13
Gwendolyn.py
13
Gwendolyn.py
@ -215,13 +215,14 @@ async def on_message(message):
|
||||
command = string.capwords(message.content.lower().replace("!wiki ",""))
|
||||
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)
|
||||
async with message.channel.typing():
|
||||
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)
|
||||
await message.channel.send(embed = embed)
|
||||
else:
|
||||
await message.channel.send(content)
|
||||
|
||||
|
Reference in New Issue
Block a user