From 8e37daa2f03a4a327e1b0a4c5ab9623ffcf543e2 Mon Sep 17 00:00:00 2001 From: cdle <798731886@qq.com> Date: Thu, 14 Oct 2021 09:49:39 +0800 Subject: [PATCH] update --- core/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/test.go b/core/test.go index b13b807..9af8ddf 100644 --- a/core/test.go +++ b/core/test.go @@ -328,7 +328,7 @@ Alias=sillyGirl.service` s.Reply("还玩吗?[Y/n]") s.Await(s, func(s2 Sender) interface{} { msg := s2.GetContent() - if strings.ToLower(msg) == "Y" || strings.ToLower(msg) == "yes" { + if strings.ToLower(msg) == "y" || strings.ToLower(msg) == "yes" { goon = true } return nil