mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
9 lines
281 B
Python
9 lines
281 B
Python
"""The checks in this module run on every command."""
|
|
from . import commands
|
|
|
|
|
|
def init_global_checks(bot):
|
|
@bot.check_once
|
|
async def check_message_is_eligible_as_command(ctx: commands.Context) -> bool:
|
|
return await ctx.bot.message_eligible_as_command(ctx.message)
|