日志打印修改
parent
8ca885264d
commit
69f2522702
|
@ -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);
|
||||
|
|
|
@ -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){
|
||||
|
|
Loading…
Reference in New Issue