prevent pings
This commit is contained in:
parent
1651382c01
commit
5037cbe9dd
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ async def on_message(message):
|
||||||
with open("data.txt", "r") as dataFile:
|
with open("data.txt", "r") as dataFile:
|
||||||
content = dataFile.read().split("\n")
|
content = dataFile.read().split("\n")
|
||||||
for i in range(length):
|
for i in range(length):
|
||||||
sentence = sentence + random.choice(content).replace("\n", "") + " "
|
sentence = sentence + random.choice(content).replace("\n", "").replace("@", "\\@\\") + " "
|
||||||
await message.channel.send(sentence)
|
await message.channel.send(sentence)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue