1
0
Fork 0
mirror of synced 2024-06-29 19:50:25 +12:00
Bonfire/cogs/utils/checks.py

20 lines
383 B
Python
Raw Normal View History

2016-07-09 13:27:19 +12:00
from discord.ext import commands
from . import config
def isOwner(ctx)
return ctx.message.author.id == config.ownerID
2016-07-09 13:27:19 +12:00
#def isOwner():
#def predicate(ctx):
#return ctx.message.author.id == config.ownerID
#return commands.check(predicate)
2016-07-09 13:27:19 +12:00
def isPM():
def predicate(ctx):
return ctx.message.channel.is_private
return commands.check(predicate)