FIX: will not grab commands

ipm
Kamal Curi 2 years ago
parent 476f4d248b
commit f77d112b12

@ -83,7 +83,10 @@ async def grab_quote(bot: object, *author: str) -> str:
return await bot.send("You haven\'t told me whose sentence I'm supposed to grab!")
if author == bot.author.name or author == "Neeble" or author == "neebly":
return await bot.send("ALERTA LAMBEÇÃO DE CACETA")
return await bot.send("`ALERTA LAMBEÇÃO DE CACETA`")
if quote_content[author][:2] == "--":
return await bot.send("I will not grab commands.")
if author in quote_content.keys():
try:

Loading…
Cancel
Save