Add carat

This commit is contained in:
nex 2022-12-31 17:13:40 +00:00
parent c94d2fa8c3
commit 33f5e44a4f
2 changed files with 4 additions and 0 deletions

BIN
carat.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -1,4 +1,5 @@
import random import random
from pathlib import Path
from typing import Optional, Tuple from typing import Optional, Tuple
from datetime import datetime, time from datetime import datetime, time
@ -130,6 +131,9 @@ class Events(commands.Cog):
"I'd just like to interject for a moment. What you're referring to as Linux, " "I'd just like to interject for a moment. What you're referring to as Linux, "
"is in fact, uh... I don't know, I forgot." "is in fact, uh... I don't know, I forgot."
) )
if "carat" in message.content.lower():
file = discord.File(Path(__file__).parent.parent / "carat.jpg")
await message.reply(file=file)
if message.channel.permissions_for(message.guild.me).add_reactions: if message.channel.permissions_for(message.guild.me).add_reactions:
if "mpreg" in message.content.lower() or "\U0001fac3" in message.content.lower(): if "mpreg" in message.content.lower() or "\U0001fac3" in message.content.lower():
try: try: