Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ntyler1 authored May 14, 2018
1 parent 7e8ec37 commit 7fe7f49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions disbot_mullets.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ async def on_message(message): #on client event - on message
songs = open('songs.txt','r')
songlist = songs.readlines()
songs.close()
await client.send_message(message.channel, 'This shit bumps!!!\n'+random.choice(songlist))
await client.send_message(message.channel, 'This song is the jam!!!\n'+random.choice(songlist))

elif messageInLowerCase.startswith('!addsong') and strMessageAuthor != vBotId: #command to addsong
songlink = message.content[9:]
Expand All @@ -256,7 +256,7 @@ async def on_message(message): #on client event - on message
songs = open("songs.txt", "a")
songs.write('\n'+songlink)
songs.close()
await client.send_message(message.channel, 'That\'s some super hot fire! Song has been added. '+vChatEmojis[4]+' '+vChatEmojis[5])
await client.send_message(message.channel, 'That\'s a good song! Song has been added. '+vChatEmojis[4]+' '+vChatEmojis[5])

elif messageInLowerCase.startswith('!calc') and strMessageAuthor != vBotId: #command to calculate string
equation = message.content[6:]
Expand Down

0 comments on commit 7fe7f49

Please sign in to comment.