Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
b9bfe40
1
Parent(s):
4e5d5b0
Update info.py
Browse files- Powers/plugins/info.py +2 -1
Powers/plugins/info.py
CHANGED
|
@@ -79,13 +79,14 @@ async def user_info(c: Gojo, user, already=False):
|
|
| 79 |
photo_id = user.photo.big_file_id if user.photo else None
|
| 80 |
is_support = True if user_id in SUPPORT_STAFF else False
|
| 81 |
if user_id in SUPPORT_STAFF:
|
| 82 |
-
omp = "Hmmm.......Who is that again?"
|
| 83 |
if user_id in DEV_USERS:
|
| 84 |
omp = "User is dev"
|
| 85 |
elif user_id in SUDO_USERS:
|
| 86 |
omp = "User is sudoer"
|
| 87 |
elif user_id in WHITELIST_USERS:
|
| 88 |
omp = "User is in whitelist"
|
|
|
|
|
|
|
| 89 |
|
| 90 |
is_bot = user.is_bot
|
| 91 |
is_fake = user.is_fake
|
|
|
|
| 79 |
photo_id = user.photo.big_file_id if user.photo else None
|
| 80 |
is_support = True if user_id in SUPPORT_STAFF else False
|
| 81 |
if user_id in SUPPORT_STAFF:
|
|
|
|
| 82 |
if user_id in DEV_USERS:
|
| 83 |
omp = "User is dev"
|
| 84 |
elif user_id in SUDO_USERS:
|
| 85 |
omp = "User is sudoer"
|
| 86 |
elif user_id in WHITELIST_USERS:
|
| 87 |
omp = "User is in whitelist"
|
| 88 |
+
else:
|
| 89 |
+
omp = "Hmmm.......Who is that again?"
|
| 90 |
|
| 91 |
is_bot = user.is_bot
|
| 92 |
is_fake = user.is_fake
|