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