1
0
Fork 0
mirror of https://github.com/uhIgnacio/EmoteManager.git synced 2024-08-15 02:23:13 +00:00

add cogs/emoji

This commit is contained in:
bmintz 2018-07-29 23:04:20 -05:00
parent 065505f273
commit bac48f7095

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))