back_recharge
duhui 2021-11-17 08:59:12 +08:00
parent a52e39292d
commit 849f0d4d52
1 changed files with 2 additions and 1 deletions

View File

@ -2687,7 +2687,7 @@ public class HeroLogic {
if (propertyItem == null) { if (propertyItem == null) {
continue; continue;
} }
Jewel j; Jewel j = null;
if (propertyItem instanceof Jewel){ if (propertyItem instanceof Jewel){
j = (Jewel) propertyItem; j = (Jewel) propertyItem;
}else { }else {
@ -2697,6 +2697,7 @@ public class HeroLogic {
j.setEquipId(propertyItem.getEquipId()); j.setEquipId(propertyItem.getEquipId());
j.setBuildLevel(1); j.setBuildLevel(1);
} }
SJewelConfig config = STableManager.getConfig(SJewelConfig.class).get(j.getEquipId());
// 进阶 // 进阶
Map<Integer, Map<Integer, SJewelRankupConfig>> rankPoolMap = SJewelRankupConfig.rankupMap.get(config.getRankupPool()); Map<Integer, Map<Integer, SJewelRankupConfig>> rankPoolMap = SJewelRankupConfig.rankupMap.get(config.getRankupPool());
// 升级 // 升级