Captain Ezio commited on
Commit
92b81e1
·
1 Parent(s): 28fc0c7

fixing error

Browse files
Files changed (1) hide show
  1. Powers/plugins/info.py +2 -2
Powers/plugins/info.py CHANGED
@@ -83,6 +83,7 @@ async def user_info(c: Gojo, user, already=False):
83
  is_support = True if user_id in SUPPORT_STAFF else False
84
  if user_id == Config.BOT_ID:
85
  is_support = "A person is a great support to himself"
 
86
  if is_support or Config.BOT_ID:
87
  if user_id in DEV_USERS:
88
  omp = "User is dev"
@@ -92,8 +93,7 @@ async def user_info(c: Gojo, user, already=False):
92
  omp = "User is in whitelist"
93
  elif user_id == Config.BOT_ID:
94
  omp = "I am the targeted user"
95
- if not (is_support or Config.BOT_ID):
96
- omp = "Hmmm.......Who is that again?"
97
 
98
  is_bot = user.is_bot
99
  is_fake = user.is_fake
 
83
  is_support = True if user_id in SUPPORT_STAFF else False
84
  if user_id == Config.BOT_ID:
85
  is_support = "A person is a great support to himself"
86
+ omp = "Hmmm.......Who is that again?"
87
  if is_support or Config.BOT_ID:
88
  if user_id in DEV_USERS:
89
  omp = "User is dev"
 
93
  omp = "User is in whitelist"
94
  elif user_id == Config.BOT_ID:
95
  omp = "I am the targeted user"
96
+
 
97
 
98
  is_bot = user.is_bot
99
  is_fake = user.is_fake