From 83b054574782575553f9f48f5c536a7cd7c687f4 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Mon, 17 Mar 2025 14:28:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=96=AF=E7=8B=82?= =?UTF-8?q?=E6=98=9F=E6=9C=9F=E5=9B=9B=E5=A4=84=E7=90=86=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E6=96=87=E6=A1=88=E6=B3=A8=E5=86=8C=E5=92=8C?= =?UTF-8?q?=E5=9B=9E=E5=A4=8D=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/kfccrazy/kfc.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/handler/kfccrazy/kfc.go b/handler/kfccrazy/kfc.go index 9f94e88..4ad59f8 100644 --- a/handler/kfccrazy/kfc.go +++ b/handler/kfccrazy/kfc.go @@ -12,7 +12,7 @@ import ( func init() { handler.RegisterHelpInform("疯狂星期四test", "疯狂星期四", "随机输出疯狂星期四文案") - handler.RegisterHandler("疯狂星期四", pickKfc, constants.LEVEL_USER) + handler.RegisterHandler("疯狂星期四test", pickKfc, constants.LEVEL_USER) handler.RegisterHelpInform("疯狂星期四文案添加", "疯狂星期四文案添加", "添加疯狂星期四文案") handler.RegisterHandler("疯狂星期四文案添加", storeKfc, constants.LEVEL_TRUSTED) @@ -106,8 +106,8 @@ func pickKfc(msg model.Message) (reply model.Reply) { if count == 0 { return model.Reply{ - ReplyMsg: "还没有任何疯狂星期四文案,快来添加吧!", - ReferOriginMsg: true, + ReplyMsg: "", + ReferOriginMsg: false, FromMsg: msg, } }