Skip to content
Permalink
Browse files
done more commenting
  • Loading branch information
bodlah committed Nov 27, 2020
1 parent fbb377c commit 8f9e910209412cfeb5568f1e6d289c36067e271b
Showing 1 changed file with 2 additions and 2 deletions.
@@ -6,7 +6,7 @@ client = discord.Client()
token = 'Nzc2ODIzNzU0MDA0NDk2NDQ1.X66ffw.XOxA0IHsRdEBjkyvThwCo-DTCCM'


class Flag:
class Flag: # copied the concept from 'Recipe chatbot' project
counter = 0


@@ -45,7 +45,7 @@ async def on_message(message):

response = message.channel.send # required to invoke response from bot

if message.author == client.user:
if message.author == client.user: # copied from discord.py documentation
return

if messages in greets: # initial greetings

0 comments on commit 8f9e910

Please sign in to comment.