diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index fe4f93202..ac76cceaf 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -465,7 +465,7 @@ export function getPlvAndScore(scores: number[] = []) { if(scores.length <= 0) scores = [0]; let maxScore = Math.max(...scores); // 等级:军功最高者的军功*6 let score = scores.reduce((pre, cur) => pre + cur, 0); - return { score, pLv: getPLvByScore(maxScore)}; + return { score, pLv: getPLvByScore(maxScore * 6)}; } export function getPvpHeroRewardsByScore(score: number) {