Using pycord rc1 and am unable to get on_member_join to work inside of a cog.
class Moderation_Module(commands.Cog):
def __init__(self, bot):
self.bot = bot
print("Moderation Module Loading...")
@commands.Cog.listener()
async def on_member_join(member):
print(f"Someone Joined")
# More stuff down here and setup
People join my server and the bot is not printing