Merge branch 'main' of github.com:pvanarkel/discord-jeeves into main
This commit is contained in:
@@ -38,11 +38,7 @@ class Games(commands.Cog):
|
|||||||
async def bingo(self, ctx):
|
async def bingo(self, ctx):
|
||||||
name = ctx.message.author.name
|
name = ctx.message.author.name
|
||||||
bingocard = babbelbingo.bingo(name)
|
bingocard = babbelbingo.bingo(name)
|
||||||
guild = ctx.message.guild
|
|
||||||
member = discord.utils.get(guild.members, id=ctx.message.author.id)
|
|
||||||
role = discord.utils.get(guild.roles , name='babbelbingo')
|
|
||||||
await ctx.author.send(file=discord.File(bingocard))
|
await ctx.author.send(file=discord.File(bingocard))
|
||||||
await member.add_roles(role)
|
|
||||||
|
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(me
|
|||||||
logger.addHandler(handler)
|
logger.addHandler(handler)
|
||||||
|
|
||||||
|
|
||||||
class Miscellaneous(commands.Cog):
|
class Misc(commands.Cog):
|
||||||
|
|
||||||
|
|
||||||
def __init__(self, bot):
|
def __init__(self, bot):
|
||||||
@@ -37,4 +37,4 @@ class Miscellaneous(commands.Cog):
|
|||||||
|
|
||||||
|
|
||||||
def setup(bot):
|
def setup(bot):
|
||||||
bot.add_cog(Miscellaneous(bot))
|
bot.add_cog(Misc(bot))
|
||||||
Reference in New Issue
Block a user