lunarflu HF Staff commited on
Commit
14e1f11
·
1 Parent(s): 1b1a36a

[safetychecks] added betatester role

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -95,8 +95,9 @@ async def safetychecks(ctx):
95
  huggingfolks_role_id = 897376942817419265
96
  fellows_role_id = 963431900825919498
97
  contentcreator_role_id = 928589475968323636
 
98
 
99
- allowed_role_ids = [huggingfolks_role_id, fellows_role_id, contentcreator_role_id]
100
  guild = bot.get_guild(guild_id)
101
  user_roles = ctx.author.roles
102
  has_allowed_role = any(role.id in allowed_role_ids for role in user_roles)
 
95
  huggingfolks_role_id = 897376942817419265
96
  fellows_role_id = 963431900825919498
97
  contentcreator_role_id = 928589475968323636
98
+ betatester_role_id = 1113511652990668893
99
 
100
+ allowed_role_ids = [huggingfolks_role_id, fellows_role_id, contentcreator_role_id, betatester_role_id]
101
  guild = bot.get_guild(guild_id)
102
  user_roles = ctx.author.roles
103
  has_allowed_role = any(role.id in allowed_role_ids for role in user_roles)