热更新

back_recharge
zhangshanxue 2020-07-29 20:04:03 +08:00
parent e6c21d947e
commit 5be771fb3b
1 changed files with 6 additions and 0 deletions

View File

@ -1162,6 +1162,12 @@ public class ChampionshipLogic {
int duration = sChampionshipSetting.getGuessTime() + sChampionshipSetting.getBattleTime(); //fix 只有竞猜和战斗
int progressState = getProgress((int) ((now - startTime) / 1000 % duration + 1)); //阶段
long round = (now - startTime) / 1000 / duration + 1;//轮数
if(round>30){
progress=-2;
//sendAllProgressUpdate();
return;
}
roundTimes = (int) round;
long diff = round - (sChampionshipSetting.getTrialsGroup() - 1);
int progressTmp;