Procházet zdrojové kódy

v0.17.2 added server id to log filenames

master
Zac Herd před 7 roky
rodič
revize
1a11d603a6
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      bot.py

+ 3
- 3
bot.py Zobrazit soubor

@@ -32,7 +32,7 @@ from secret import token, lfmkey
# CONFIGURATION

# bot version
version = "v0.17.1"
version = "v0.17.2"

# text shown by .help command
helptext = """I am a Discord bot written in Python
@@ -340,10 +340,10 @@ def on_message(message):
json.dump(history, fp)

# log user messages for markov chains, ignoring messages with certain substrings
filters = ['```', 'http://', 'https://']
filters = ['`', 'http://', 'https://']
if not any(x in message.content for x in filters):
try:
with open('./markovs/' + message.author.id, 'a') as fp:
with open('./markovs/' + message.server.id + '-' + message.author.id, 'a') as fp:
fp.write('\n' + message.content)
except PermissionError:
pass


Načítá se…
Zrušit
Uložit