🐛 Fix Incorrect Reply Message

This commit is contained in:
洛水居室 2023-01-03 17:23:40 +08:00
parent 471ed052ea
commit 20eed878ec
No known key found for this signature in database
GPG Key ID: C9DE87DA724B88FC

View File

@ -351,13 +351,13 @@ class GroupJoiningVerification(Plugin):
)
if new_chat_members_message:
reply_message = (
f"*欢迎 {user.mention_markdown_v2()} 来到「提瓦特」世界!* \n"
f"*欢迎来到「提瓦特」世界!* \n"
f"问题: {escape_markdown(question.text, version=2)} \n"
f"请在*{self.time_out}*秒内回答问题"
)
else:
reply_message = (
f"*欢迎来到「提瓦特」世界!* \n"
f"*欢迎 {user.mention_markdown_v2()} 来到「提瓦特」世界!* \n"
f"问题: {escape_markdown(question.text, version=2)} \n"
f"请在*{self.time_out}*秒内回答问题"
)