探索报空

back_recharge
xuexinpeng 2022-01-15 18:33:19 +08:00
parent 3a1a61171a
commit eb9ed25093
1 changed files with 5 additions and 0 deletions

View File

@ -194,8 +194,13 @@ public class ExplorerMapLogic {
} else {
offlineEndTime = keyVal.getValue().getSendEndTime();
}
if(keyVal.getValue() == null){
LOGGER.info("ExplorerInfo 数据为空 =>{}",user.getId());
continue;
}
SExplore exploreConfig = STableManager.getConfig(SExplore.class).get(keyVal.getValue().getMapId());
if (exploreConfig == null) {
LOGGER.info("{} SExplore 不存在的id =>{}",user.getId(),keyVal.getValue().getMapId());
continue;
}
int battleInterval = exploreConfig.getBattleInterval();