21 lines
537 B
Python
21 lines
537 B
Python
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_staff_or_ot(ctx):
|
|
if not ctx.guild:
|
|
return True
|
|
is_ot = (ctx.channel.name == "off-topic")
|
|
is_staff = any(r.id in config.staff_role_ids for r in ctx.author.roles)
|
|
return (is_ot or is_staff)
|