From f831c00b22a4d0af9bdcba5cd0a796b33f1ad6dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E6=9F=B3=E7=85=9C?= <101934327+fangliuyu@users.noreply.github.com> Date: Wed, 6 Sep 2023 20:37:10 +0800 Subject: [PATCH] Update store.go --- plugin/mcfish/store.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugin/mcfish/store.go b/plugin/mcfish/store.go index a53292ab3a..28cc622c15 100644 --- a/plugin/mcfish/store.go +++ b/plugin/mcfish/store.go @@ -89,7 +89,6 @@ func init() { msg = append(msg, message.Text( "[", i, "]", info.Name, " 数量: ", info.Number, "\n")) } - } msg = append(msg, message.Reply(ctx.Event.MessageID), message.Text("————————\n输入对应序号进行装备,或回复“取消”取消")) ctx.Send(msg) @@ -300,7 +299,6 @@ func init() { thingPice := priceList[info.Name] * discountList[info.Name] / 100 pice = append(pice, thingPice) } - } if len(thingInfos) > 1 { msg := make(message.Message, 0, 3+len(thingInfos)) @@ -313,7 +311,6 @@ func init() { msg = append(msg, message.Text( "[", i, "]", info.Name, " 数量:", info.Number, " 价格:", pice[i], "\n")) } - } msg = append(msg, message.Text("————————\n输入对应序号进行装备,或回复“取消”取消")) ctx.Send(message.ReplyWithMessage(ctx.Event.MessageID, msg...))