You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import config
|
|
|
|
|
|
def check_if_staff(ctx):
|
|
if not ctx.guild:
|
|
return False
|
|
return any(r.id in config.staff_role_ids for r in ctx.author.roles)
|
|
|
|
|
|
def check_if_bot_manager(ctx):
|
|
if not ctx.guild:
|
|
return False
|
|
return any(r.id == config.bot_manager_role_id for r in ctx.author.roles)
|
|
|
|
|
|
def check_if_verified(ctx):
|
|
return True
|
|
|
|
|
|
def check_if_verified_or_dms(ctx):
|
|
return True
|