pvp:月卡增加最大次数

This commit is contained in:
luying
2022-05-12 20:12:38 +08:00
parent 861ef65e34
commit a41fa95113
3 changed files with 13 additions and 9 deletions

View File

@@ -446,7 +446,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 * 6)};
return { score, pLv: getPLvByScore(maxScore * param.PVP.PVP_LINEUP_HEROS)};
}
export function getPvpHeroRewardsByScore(score: number) {