Обновление: v0.2

This commit is contained in:
dize_dev
2023-10-30 17:43:10 +06:00
parent 04a4ab8f64
commit 3cab0cc9b2
6 changed files with 32 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
from custom_rules.permission import Permission
from vkbottle.user import Message
from config import bl, edit_message, prefix_bot
from utils import rewards_list
listToStr = ' '.join(map(str, rewards_list))
@bl.message(Permission(), text=[prefix_bot + " достижения"])
async def rewards(message: Message):
await edit_message(message,
"Вот список всех достижений 🏆:\n " + listToStr)