diff --git a/cogs/anime.py b/cogs/anime.py index b0d83631..4f2392ea 100644 --- a/cogs/anime.py +++ b/cogs/anime.py @@ -115,6 +115,11 @@ class Anime(commands.Cog): def __init__(self, bot): self.bot = bot + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded!\n-----") + @commands.group(invoke_without_command=True) async def waifu(self, ctx, waifu=None): """Shows a Waifu""" diff --git a/cogs/enso.py b/cogs/enso.py index a22fa1d0..37cb8b70 100644 --- a/cogs/enso.py +++ b/cogs/enso.py @@ -92,6 +92,11 @@ class Enso(commands.Cog): def __init__(self, bot): self.bot = bot + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") + @commands.group(invoke_without_command=True) async def enso(self, ctx, name=None): """Shows Random Person from Ensō""" diff --git a/cogs/fun.py b/cogs/fun.py index 405515f2..a8e168df 100644 --- a/cogs/fun.py +++ b/cogs/fun.py @@ -62,6 +62,11 @@ class Fun(commands.Cog): def __init__(self, bot): self.bot = bot + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") + @command(name="attack", aliases=['Attack'], hidden=True) @is_owner() async def attack(self, ctx, target: Member): diff --git a/cogs/info.py b/cogs/info.py index 0e132803..2cc621b0 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -56,6 +56,11 @@ class Info(commands.Cog): def __init__(self, bot): self.bot = bot + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") + @command(name="userinfo", aliases=["ui"]) @cooldown(1, 5, BucketType.user) async def user_info(self, ctx, target=None): diff --git a/cogs/interactive.py b/cogs/interactive.py index 5ad92d51..4fb4dd99 100644 --- a/cogs/interactive.py +++ b/cogs/interactive.py @@ -26,6 +26,11 @@ class Interactive(commands.Cog): def __init__(self, bot): self.bot = bot + + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") @command(name="kiss", aliases=["Kiss"]) @cooldown(1, 1, BucketType.user) diff --git a/cogs/modmail.py b/cogs/modmail.py index 29d6a270..c5f6ccb7 100644 --- a/cogs/modmail.py +++ b/cogs/modmail.py @@ -151,6 +151,11 @@ class Modmail(commands.Cog): self.bot = bot self.anon = None + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") + @commands.group(invoke_without_command=True) async def modmail(self, ctx): """Setup/Update/Delete Modmail System""" diff --git a/cogs/relationship.py b/cogs/relationship.py index cb521c7d..91167773 100644 --- a/cogs/relationship.py +++ b/cogs/relationship.py @@ -49,6 +49,11 @@ class Relationship(commands.Cog): def __init__(self, bot): self.bot = bot + + @commands.Cog.listener() + async def on_ready(self): + """Printing out that Cog is ready on startup""" + print(f"{self.__class__.__name__} Cog has been loaded\n-----") @command(name="marry", aliases=["Marry"]) @cooldown(1, 1, BucketType.user)