diff --git a/game-server/app/services/pvpService.ts b/game-server/app/services/pvpService.ts index 7e539461f..8b3881034 100644 --- a/game-server/app/services/pvpService.ts +++ b/game-server/app/services/pvpService.ts @@ -611,7 +611,7 @@ export async function sendPVPRewardToUser(pvpDefense: PvpDefenseType, seasonNum: //下发邮件 if (rankGoods.length > 0) //排名奖励 await sendMailByContent(MAIL_TYPE.PVP_RANK_REWARD, pvpDefense.roleId, { - params: [JSON.stringify(seasonNum), (rankLv > 1000 ? '999+' : JSON.stringify(rankLv))], + params: [JSON.stringify(seasonNum), ((rankLv == 0 || rankLv > 1000) ? '999+' : JSON.stringify(rankLv))], goods: rankGoods }); if (heroGoods.length > 0) //武将功勋奖励