From b8153756d43a503860a4f1f4f01564a87ecdfdd2 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Wed, 13 Sep 2017 03:47:05 -0500 Subject: [PATCH] Remove embed notifs for me --- cogs/owner.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cogs/owner.py b/cogs/owner.py index 97a963e..212466c 100644 --- a/cogs/owner.py +++ b/cogs/owner.py @@ -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()))