add cogs/emoji

This commit is contained in:
bmintz 2018-07-29 23:04:20 -05:00
parent 065505f273
commit bac48f7095
1 changed files with 16 additions and 0 deletions

16
cogs/emoji.py Normal file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env python3
# encoding: utf-8
from discord.ext import commands
class Emoji:
def __init__(self, bot):
self.bot = bot
async def __local_check(self, context):
return (
context.guild
and context.author.guild_permissions.manage_emojis)
def setup(bot):
bot.add_cog(Emoji(bot))