瀏覽代碼

v0.17.2 added server id to log filenames

master
Zac Herd 7 年之前
父節點
當前提交
1a11d603a6
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      bot.py

+ 3
- 3
bot.py 查看文件

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


Loading…
取消
儲存