From 5c0ff5165b9f0a5114c453dc5927cbb94d20019b Mon Sep 17 00:00:00 2001 From: meixiongfeng <766881921@qq.com> Date: Tue, 27 Sep 2022 21:25:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A5=97=E8=A3=85=E5=B1=9E=E6=80=A7=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/hero/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hero/module.go b/modules/hero/module.go index 0f723eb7e..0e1197d18 100644 --- a/modules/hero/module.go +++ b/modules/hero/module.go @@ -138,7 +138,7 @@ func (this *Hero) SendRdTask(session comm.IUserSession) { equipmap := make(map[int32]map[int32]int32, 0) // k 套装id k1 xx星 v 数量 list := this.GetHeroList(session.GetUserId()) for _, v := range list { - if v.SuiteId != 0 || v.SuiteExtId != 0 { + if v.SuiteId != 0 { if _, ok := equipmap[v.SuiteId]; !ok { equipmap[v.SuiteId] = make(map[int32]int32, 0) }