Merge branch 'master_online_hw' into master_test_hw

back_recharge 2021.01.13online
duhui 2021-01-11 17:50:16 +08:00
commit e0e64e46b3
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ public class CheckFight {
int[] resultCache = new int[8];//对方阵容走配置 Todo 后面结构走配置
resultCache[0]=status;
resultCache[1]=duration;
// LOGGER.info(" lua check test fight result : "+ status);
LOGGER.info(" lua check test fight result : "+ status);
for (int i = 1; i <= result.length(); i++) {
long tolong = result.rawget(i).tolong();
if(tolong>0){
@ -115,7 +115,7 @@ public class CheckFight {
resultCache[i+1]= (int)Math.max((long) Integer.MIN_VALUE,tolong);
}
resultCache[i+1] = result.rawget(i).toint();
// LOGGER.info(i+" --> 单位剩余血量 : "+ resultCache[i+1]);
LOGGER.info(i+" --> 单位剩余血量 : "+ resultCache[i+1]);
}
return resultCache;