"pussy in bio" kys

This commit is contained in:
nin0dev 2024-07-20 08:22:18 -04:00
parent 65f07ba747
commit fb4e2fd99c
2 changed files with 11 additions and 5 deletions

7
.gitignore vendored
View file

@ -1,3 +1,8 @@
bin/
include/
lib/
lib64
pyvenv.cfg
.env
.venv
*.session*
*.session*

View file

@ -28,7 +28,6 @@ async def help(client, message: Message):
for command in COMMANDS:
help_message += f"**{command.command}**{' 👑 ' if command.description.startswith('(👑)') else ' '}- {command.description.replace('(👑) ', '')}\n"
await message.reply(help_message, parse_mode=enums.ParseMode.MARKDOWN)
#region Fun
@app.on_message(filters.command(["minky", "mink", "minker"], prefixes=P))
async def minky(client, message: Message):
@ -50,7 +49,9 @@ async def sync(client, message: Message):
@app.on_message(filters.command(["source", "sc"], prefixes=P))
async def source(client, message: Message):
await message.reply("I am free software! You can look at my code on https://git.nin0.dev/nin0/venbot-tg", disable_web_page_preview=True)
#endregion
app.run()
@app.on_message()
async def message_handler(client, message: Message):
if message.text == "pussy in bio":
await message.reply("kys")
app.run()