back_recharge
parent
a52e39292d
commit
849f0d4d52
|
|
@ -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());
|
||||||
// 升级
|
// 升级
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue