1
0
Fork 0
mirror of synced 2024-05-18 19:42:28 +12:00

Remove embed notifs for me

This commit is contained in:
phxntxm 2017-09-13 03:47:05 -05:00
parent 9b4fe182e0
commit b8153756d4

View file

@ -39,6 +39,8 @@ class Owner:
return content.strip('` \n')
async def on_guild_join(self, guild):
# I don't want this for now
return
# Create our embed that we'll use for the information
embed = discord.Embed(title="Joined guild {}".format(guild.name), description="Created on: {}".format(guild.created_at.date()))
@ -64,6 +66,8 @@ class Owner:
await self.bot.owner.send(embed=embed)
async def on_guild_remove(self, guild):
# I don't want this for now
return
# Create our embed that we'll use for the information
embed = discord.Embed(title="Left guild {}".format(guild.name), description="Created on: {}".format(guild.created_at.date()))