Przeglądaj źródła

v0.17.2 added server id to log filenames

master
Zac Herd 7 lat temu
rodzic
commit
1a11d603a6
1 zmienionych plików z 3 dodań i 3 usunięć
  1. +3
    -3
      bot.py

+ 3
- 3
bot.py Wyświetl plik

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


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


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


# log user messages for markov chains, ignoring messages with certain substrings # 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): if not any(x in message.content for x in filters):
try: 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) fp.write('\n' + message.content)
except PermissionError: except PermissionError:
pass pass


Ładowanie…
Anuluj
Zapisz