Kaynağa Gözat

v0.17.2 added server id to log filenames

master
Zac Herd 7 yıl önce
ebeveyn
işleme
1a11d603a6
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      bot.py

+ 3
- 3
bot.py Dosyayı Görüntüle

@@ -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


Yükleniyor…
İptal
Kaydet