mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2024-11-23 12:41:05 +08:00
add tailchat adapt for namerena plugin
This commit is contained in:
parent
6bbbaf4cc6
commit
bf40679012
|
@ -15,12 +15,12 @@ else:
|
||||||
IcaNewMessage = TypeVar("NewMessage")
|
IcaNewMessage = TypeVar("NewMessage")
|
||||||
IcaClient = TypeVar("IcaClient")
|
IcaClient = TypeVar("IcaClient")
|
||||||
|
|
||||||
_version_ = "0.4.1"
|
_version_ = "0.4.2"
|
||||||
|
|
||||||
COMMAND = "/namerena"
|
COMMAND = "/namerena"
|
||||||
|
|
||||||
def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
|
def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
|
||||||
if not msg.content.startswith("/namerena"):
|
if not msg.content.startswith("/namerena") or msg.is_reply:
|
||||||
return
|
return
|
||||||
if msg.content.find("\n") == -1:
|
if msg.content.find("\n") == -1:
|
||||||
client.send_message(
|
client.send_message(
|
||||||
|
@ -63,3 +63,7 @@ def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
|
||||||
# 发送错误
|
# 发送错误
|
||||||
reply = msg.reply_with(f"发生错误:{e}\n{traceback.format_exc()}")
|
reply = msg.reply_with(f"发生错误:{e}\n{traceback.format_exc()}")
|
||||||
client.send_message(reply)
|
client.send_message(reply)
|
||||||
|
|
||||||
|
|
||||||
|
def on_tailchat_message(msg, client) -> None:
|
||||||
|
on_ica_message(msg, client)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user