diff --git a/game-server/app/services/pvpService.ts b/game-server/app/services/pvpService.ts index 2039f8c07..0b38d2086 100644 --- a/game-server/app/services/pvpService.ts +++ b/game-server/app/services/pvpService.ts @@ -486,7 +486,7 @@ export async function generMyRecInfo(heroScores: HeroScores[], winStreakNum: num }); } else { showHeroScores.push({ - hid, addScore: 0, plusScore: 0, score: curHeroScore.score + hid, addScore: 0, plusScore: 0, score: curHeroScore?curHeroScore.score: 0 }); } const myHero = await HeroModel.findByHidAndRole(hid, roleId, 'quality star colorStar lv');