Archived
0

fix reset analyzer parameters on import market

This commit is contained in:
iMoHax
2015-01-14 17:07:12 +03:00
parent 42a823bd95
commit 0e4dc496e3

View File

@@ -63,6 +63,10 @@ public class World {
analyzer.setSegmentSize(Main.SETTINGS.getSegmentSize()); analyzer.setSegmentSize(Main.SETTINGS.getSegmentSize());
analyzer.setPathsCount(Main.SETTINGS.getPathsCount()); analyzer.setPathsCount(Main.SETTINGS.getPathsCount());
analyzer.setFilter(Main.SETTINGS.getFilter(market)); analyzer.setFilter(Main.SETTINGS.getFilter(market));
analyzer.setCargo(Main.SETTINGS.getCargo());
analyzer.setTank(Main.SETTINGS.getTank());
analyzer.setMaxDistance(Main.SETTINGS.getDistance());
analyzer.setJumps(Main.SETTINGS.getJumps());
return analyzer; return analyzer;
} }
} }