allowed_users = [123,456]
def is_allowed():
def predicate(ctx):
return ctx.author.id in allowed_users
return commands.check(predicate)
@discord.ext.commands.check_any(is_allowed())
@client.command(aliases = ['displayembed', '123'])
async def __displayembed(ctx):