属性bug

back_recharge
mashiyu 2019-03-27 20:52:43 +08:00
parent 1ec26b5c8b
commit 333446f2eb
1 changed files with 1 additions and 1 deletions

View File

@ -767,7 +767,7 @@ public class HeroLogic {
private void combinedAttribute(int[][] otherAttriMap,Map<Integer,Integer> heroAttributeMap){
for(int[] item : otherAttriMap){
int propertyId = item[0];
int propertyValue = item[0];
int propertyValue = item[1];
if(heroAttributeMap.containsKey(propertyId)){
propertyValue += heroAttributeMap.get(propertyId);
}