战斗失败战报数据为空 由下层判断输赢

This commit is contained in:
meixiongfeng 2023-01-04 09:58:12 +08:00
parent dd5879ff88
commit 09fb6e67ed

View File

@ -56,14 +56,11 @@ func (this *apiComp) ChallengeOver(session comm.IUserSession, req *pb.MainlineCh
}
// 校验通过
if req.Report != nil { // 战斗失败
code, isWin = this.module.battle.CheckBattleReport(session, req.Report)
if code != pb.ErrorCode_Success {
return
}
} else {
isWin = false
code, isWin = this.module.battle.CheckBattleReport(session, req.Report)
if code != pb.ErrorCode_Success {
return
}
if !isWin { // 战斗失败直接返回
// 返还
mainline.Ps = 0