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, } }