浏览代码

v0.20.1, better case ignoring

master
Zac Herd 7 年前
父节点
当前提交
e7a115f412
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      bot.py

+ 4
- 4
bot.py 查看文件

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

# bot version
version = "v0.20.0"
version = "v0.20.1"

# text shown by .help command
helptext = """I am a Discord bot written in Python
@@ -423,15 +423,15 @@ def on_message(message):
pass

# someone noticed me! <3
if bool(re.search(r'\b[Mm][Aa][Kk][Ii]\b', message.content)):
if bool(re.search(r'\bmaki\b', message.content, re.IGNORECASE)):
yield from client.add_reaction(message, '\N{BLACK HEART SUIT}')

# butter
if bool(re.search(r'\b[Bb][Uu][Tt][Tt][Ee][Rr]\b', message.content)):
if bool(re.search(r'\bbutter\b', message.content, re.IGNORECASE)):
yield from client.add_reaction(message, '\N{PERSON WITH FOLDED HANDS}')

# egg
if bool(re.search(r'\b[Ee][Gg][Gg]\b', message.content)):
if bool(re.search(r'\begg\b', message.content, re.IGNORECASE)):
yield from client.add_reaction(message, '\N{AUBERGINE}')

# send response to channel if needed:


正在加载...
取消
保存