From 451226556698c6bffd390767c01aa1cd9b43474c Mon Sep 17 00:00:00 2001 From: luying Date: Tue, 22 Feb 2022 19:19:10 +0800 Subject: [PATCH] =?UTF-8?q?pvp=EF=BC=9A=E4=BF=AE=E5=A4=8D=E5=86=9B?= =?UTF-8?q?=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/pubUtils/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {