From 8e6bec496a32492e5bc726177b184294b70d3854 Mon Sep 17 00:00:00 2001 From: Santiago Ramirez <94815926+SantiiRepair@users.noreply.github.com> Date: Sat, 5 Aug 2023 09:25:15 +0000 Subject: [PATCH] Update actives.py --- tlg_bot/kreacher/plugins/actives.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tlg_bot/kreacher/plugins/actives.py b/tlg_bot/kreacher/plugins/actives.py index 78e1bd3..b3604b5 100644 --- a/tlg_bot/kreacher/plugins/actives.py +++ b/tlg_bot/kreacher/plugins/actives.py @@ -6,10 +6,10 @@ @kreacher.on(events.NewMessage(pattern="[!?/]actives")) async def actives(event): - msg = await event.reply("Getting active voice chats.. Please hold") + msg = await event.reply("Getting active Voice Chats... \n\nPlease hold, master", parse_mode="HTML") await sleep(3) served_chats = len(VOICE_CHATS) if served_chats > 0: - return await msg.edit(f"**Active Voice Chats:-**\n\n{served_chats}") + return await msg.edit(f"Active Voice Chats: {served_chats}", parse_mode="HTML") - return await msg.edit("No Active Voice Chats") + return await msg.edit("No active Voice Chats", parse_mode="HTML")