日志打印修改

back_recharge
lvxinran 2019-07-03 10:00:29 +08:00
parent 8ca885264d
commit 69f2522702
2 changed files with 2 additions and 3 deletions

View File

@ -2267,10 +2267,9 @@ public class MapLogic {
}else{
mapManager.setTower(1);
}
mapManager.setFoodBufferMap(new HashMap<>());
mapManager.setFightCount(0);
mapManager.setEssenceValue(0);
mapManager.setTowerUnusedBuffer(null);
mapManager.setTowerUnusedBuffer(new HashMap<>());
mapManager.setMapIntoFlag(0);
if(storeManager.getStoreInfoMap().get(8)!=null){
storeManager.removeStoreInfo(8);

View File

@ -30,7 +30,7 @@ public class FourtyThreeBehavior extends BaseBehavior{
};
if (mapManager.getBossType()==3){
Cell cell = mapManager.getMapInfo().get(mapManager.getBossXY());
LOGGER.info("暂存buff层数:"+mapManager.getTower()+",buff:"+cell.getEventId()+"pointId:"+cell.getPointId());
LOGGER.info("暂存buff层数:{},buff:{},pointId:{}",mapManager.getTower(),cell.getEventId(),cell.getPointId());
mapManager.addTowerUnusedBuffer(mapManager.getTower(),cell.getEventId());
return true;
}else if(mapManager.getBossType()==4){