From 8d4d6c7e5e82164333410b7502e0f10a4c9dacc5 Mon Sep 17 00:00:00 2001 From: fumiama Date: Fri, 10 Sep 2021 14:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=20=E7=BE=8E=E5=8C=96?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- control/rule.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/control/rule.go b/control/rule.go index 40e9e87b88..e985ac7276 100644 --- a/control/rule.go +++ b/control/rule.go @@ -180,11 +180,11 @@ func init() { i := 0 forEach(func(key string, manager *Control) bool { i++ - msg += "\n" + strconv.Itoa(i) + `: ` + key + msg += "\n" + strconv.Itoa(i) + `: ` if manager.isEnabledIn(ctx.Event.GroupID) { - msg += " ●" + msg += " ●" + key } else { - msg += " ○" + msg += " ○" + key } return true })