Add lupupa img

This commit is contained in:
Nexus 2023-05-04 18:21:03 +01:00
parent b54994506e
commit 732cf1dd1c
Signed by: nex
GPG key ID: 0FA334385D0B689F
2 changed files with 4 additions and 0 deletions

BIN
assets/lupupa.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View file

@ -396,6 +396,9 @@ class Events(commands.Cog):
"file": discord.File(assets / "carat.jpg"),
"delete_after": None
},
r"lupupa": {
"file": discord.File(assets / "lupupa.jpg"),
},
r"[s5]+(m)+[e3]+[g9]+": {
"func": send_smeg,
"meta": {
@ -488,6 +491,7 @@ class Events(commands.Cog):
for k, v in data.copy().items():
if callable(v):
data[k] = v()
data.setdefault("delete_after", 30)
await message.reply(**data)
break