This commit is contained in:
levina 2022-02-06 11:59:36 +07:00 committed by GitHub
parent 27301e3fa7
commit ee727904f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ async def _human_time_duration(seconds):
async def start_(c: Client, message: Message): async def start_(c: Client, message: Message):
user_id = message.from_user.id user_id = message.from_user.id
if await is_gbanned_user(user_id): if await is_gbanned_user(user_id):
await message.reply_text(f"❗️ **You've been blocked from using this bot!") await message.reply_text("❗️ **You've been blocked from using this bot!")
return return
await message.reply_text( await message.reply_text(
f"""✨ **Welcome {message.from_user.mention()} !**\n f"""✨ **Welcome {message.from_user.mention()} !**\n
@ -107,7 +107,7 @@ async def start_(c: Client, message: Message):
async def alive(c: Client, message: Message): async def alive(c: Client, message: Message):
user_id = message.from_user.id user_id = message.from_user.id
if await is_gbanned_user(user_id): if await is_gbanned_user(user_id):
await message.reply_text(f"❗️ **You've been blocked from using this bot!") await message.reply_text("❗️ **You've been blocked from using this bot!")
return return
chat_id = message.chat.id chat_id = message.chat.id
current_time = datetime.utcnow() current_time = datetime.utcnow()
@ -139,7 +139,7 @@ async def alive(c: Client, message: Message):
async def ping_pong(c: Client, message: Message): async def ping_pong(c: Client, message: Message):
user_id = message.from_user.id user_id = message.from_user.id
if await is_gbanned_user(user_id): if await is_gbanned_user(user_id):
await message.reply_text(f"❗️ **You've been blocked from using this bot!") await message.reply_text("❗️ **You've been blocked from using this bot!")
return return
start = time() start = time()
m_reply = await message.reply_text("pinging...") m_reply = await message.reply_text("pinging...")
@ -151,7 +151,7 @@ async def ping_pong(c: Client, message: Message):
async def get_uptime(c: Client, message: Message): async def get_uptime(c: Client, message: Message):
user_id = message.from_user.id user_id = message.from_user.id
if await is_gbanned_user(user_id): if await is_gbanned_user(user_id):
await message.reply_text(f"❗️ **You've been blocked from using this bot!") await message.reply_text("❗️ **You've been blocked from using this bot!")
return return
current_time = datetime.utcnow() current_time = datetime.utcnow()
uptime_sec = (current_time - START_TIME).total_seconds() uptime_sec = (current_time - START_TIME).total_seconds()