计算星级

back_recharge
duhui 2021-12-06 18:31:53 +08:00
parent 2c549257e0
commit 147a3a2368
1 changed files with 1 additions and 1 deletions

View File

@ -1805,7 +1805,7 @@ public class HeroLogic {
for (SCHeroRankUpConfig val : collect) {
if (heroLevel > val.getOpenLevel()) {
// 计算星级需要+1操作
return val.getOpenStar() + 1;
return val.getOpenStar();
}
}
}