1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
昔念
2026-02-23 14:45:20 +08:00
parent 6b316b868c
commit fc5ddcb3f4
3 changed files with 6 additions and 3 deletions

View File

@@ -83,7 +83,9 @@ func (h Controller) FreshChoiceFightLevel(data *fight.C2S_FRESH_CHOICE_FIGHT_LEV
for _, v := range boss.BossIds {
r := service.NewBossService().Get(v)
result.BossId = append(result.BossId, uint32(r.MonID))
if r != nil {
result.BossId = append(result.BossId, uint32(r.MonID))
}
}