From 8b36828a56848d34a94b74782be74c05222e2156 Mon Sep 17 00:00:00 2001 From: cdle <798731886@qq.com> Date: Tue, 12 Oct 2021 17:01:12 +0800 Subject: [PATCH] update --- core/xiaoai.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/xiaoai.go b/core/xiaoai.go index 92217f0..53e445f 100644 --- a/core/xiaoai.go +++ b/core/xiaoai.go @@ -20,6 +20,9 @@ func init() { return "未设置小同学api" } reply := func(str string) string { + s.Reply(api) + s.Reply(str) + s.Reply(fmt.Sprintf(api, str)) str, _ = httplib.Get(fmt.Sprintf(api, str)).String() if str == "" { str = "暂时无法回复。" @@ -35,11 +38,11 @@ func init() { } s.Await(s, func(s2 Sender) interface{} { msg := s2.Get() - if msg == "闭嘴" { + if strings.Contains(msg, "闭嘴") { stop = true } return reply(msg) - }, `[\s\S]*`, time.Duration(time.Second*300)) + }, `[\s\S]*`, time.Duration(time.Second*5000)) } } if msg == "" {