Ruby-Cogs/lottery/checks.py
2025-05-23 02:30:00 -04:00

8 lines
221 B
Python

from redbot.core import commands
def lucky3_enabled():
async def pred(ctx: commands.Context):
return await ctx.bot.get_cog("Lottery").config.guild(ctx.guild).lucky3.enable()
return commands.check(pred)