挂机合成装备最大循环数修改提交

back_recharge
lvxinran 2020-06-25 10:51:54 +08:00
parent a7346c0837
commit 9153efbc62
1 changed files with 7 additions and 1 deletions

View File

@ -986,6 +986,12 @@ public class CombatLogic {
}
}
/**
*
* @param equipMap
* @return
*/
private static Map<Integer,Integer> equipAutoCombine(Map<Integer,Integer> equipMap){
if(equipMap.isEmpty())
return equipMap;
@ -1024,7 +1030,7 @@ public class CombatLogic {
isOver = false;
}
count++;
}while(!isOver&&count<5);
}while(!isOver&&count<10);
equipMap = tempMap;
return equipMap;
}