by Robin at 20240416
This commit is contained in:
parent
9fdbd5bcb2
commit
4fe9faa1bb
|
@ -1678,14 +1678,15 @@ func (s *Service) utilFillZoneMomentsWithApiVOInfo(ctx *gin.Context, list []*dbs
|
|||
}
|
||||
|
||||
// 填充铁粉解锁信息
|
||||
if zidZuMap[zid].IsUnlockIronfanship() {
|
||||
zu, ok := zidZuMap[zid]
|
||||
if ok && zu.IsUnlockIronfanship() {
|
||||
vo.IsIronfanshipUnlocked = consts.IsIronfanshipUnlocked_Yes
|
||||
} else {
|
||||
vo.IsIronfanshipUnlocked = consts.IsIronfanshipUnlocked_No
|
||||
}
|
||||
|
||||
// 填充超粉解锁信息
|
||||
if zidZuMap[zid].IsUnlockSuperfanship() {
|
||||
if ok && zu.IsUnlockSuperfanship() {
|
||||
vo.IsSuperfanshipUnlocked = consts.IsSuperfanshipUnlocked_Yes
|
||||
} else {
|
||||
vo.IsSuperfanshipUnlocked = consts.IsSuperfanshipUnlocked_No
|
||||
|
|
Loading…
Reference in New Issue