From 24909f0523edbff400bbbbc5d67a686fa2f10faf Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 21 May 2019 21:11:09 +0300 Subject: [PATCH] Extend allowable range a little so that first reload of triglavians is included --- eos/graph/fitDmgVsTime.py | 2 +- eos/graph/fitDpsVsTime.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/graph/fitDmgVsTime.py b/eos/graph/fitDmgVsTime.py index c73df8b1d..49912ec90 100644 --- a/eos/graph/fitDmgVsTime.py +++ b/eos/graph/fitDmgVsTime.py @@ -79,7 +79,7 @@ class FitDmgVsTimeGraph(Graph): return roundToPrec(cache[closestTime], 6) def _getXLimits(self, fit, extraData): - return 0, 1000 + return 0, 2500 def __generateCache(self, fit, maxTime): cache = self._cache[fit.ID] = {} diff --git a/eos/graph/fitDpsVsTime.py b/eos/graph/fitDpsVsTime.py index 20023a388..830b3948b 100644 --- a/eos/graph/fitDpsVsTime.py +++ b/eos/graph/fitDpsVsTime.py @@ -81,7 +81,7 @@ class FitDpsVsTimeGraph(Graph): return roundToPrec(cache[closestTime], 6) def _getXLimits(self, fit, extraData): - return 0, 1000 + return 0, 2500 def __generateCache(self, fit, maxTime): cache = []