diff --git a/main.py b/main.py index f0db70b..2be34c8 100644 --- a/main.py +++ b/main.py @@ -36,9 +36,6 @@ async def on_ready(): @client.event async def on_message(message): - #if message.author == client.user: - # return - if message.author.bot: return @@ -48,9 +45,6 @@ async def on_message(message): if message.content.startswith(BOTDATA['prefix'] + 'hello'): await message.channel.send("Hello, {}!".format(message.author)) - - if 'happy birthday' in message.content.lower(): - await message.channel.send('Happy Birthday! 🎈🎉') - + #keep_alive() client.run(BOTDATA['token'])