From d35b07d34ef7debada41420109c31a65b3f56076 Mon Sep 17 00:00:00 2001 From: ikechan8370 Date: Thu, 8 Dec 2022 20:51:42 +0800 Subject: [PATCH] fix: destroy conversation response --- index_no#.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index_no#.js b/index_no#.js index c717c35..a6d955a 100644 --- a/index_no#.js +++ b/index_no#.js @@ -84,7 +84,7 @@ export class chatgpt extends plugin { await this.reply('当前没有开启对话', true) } else { await redis.del(`CHATGPT:CONVERSATIONS:${e.sender.user_id}`) - await this.reply('已结束当前对话,请使用#chatgpt进行聊天以开启新的对话', true) + await this.reply('已结束当前对话,请@我进行聊天以开启新的对话', true) } } else { let at = ats[0] @@ -95,7 +95,7 @@ export class chatgpt extends plugin { await this.reply(`当前${atUser}没有开启对话`, true) } else { await redis.del(`CHATGPT:CONVERSATIONS:${qq}`) - await this.reply(`已结束${atUser}的对话,他仍可以使用#chatgpt进行聊天以开启新的对话`, true) + await this.reply(`已结束${atUser}的对话,他仍可以@我进行聊天以开启新的对话`, true) } } }