Files
croccybot/bot/wards.py
2022-11-18 08:49:21 +02:00

10 lines
284 B
Python

from meta.LionContext import LionContext
async def sys_admin(ctx: LionContext) -> bool:
"""
Checks whether the context author is listed in the configuration file as a bot admin.
"""
admins = ctx.bot.config.bot.getintlist('admins')
return ctx.author.id in admins