From 1c4128b9a1e3c7e906476508c5b071ad85c82b5d Mon Sep 17 00:00:00 2001 From: blitzman Date: Sun, 5 Mar 2017 17:01:00 -0500 Subject: [PATCH] Change probe size cap to 1.08 (previous testing done apparently showed 1.1 - 1.12, however most people refer to 1.08 as the cap. --- eos/saveddata/fit.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index aa92ff21a..a12368e8a 100644 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -927,20 +927,19 @@ class Fit(object): return amount - # Expresses how difficult a target is to probe down with scan probes - # If this is <1.08, the ship is unproabeable @property def probeSize(self): + """ + Expresses how difficult a target is to probe down with scan probes + """ + sigRad = self.ship.getModifiedItemAttr("signatureRadius") sensorStr = float(self.scanStrength) probeSize = sigRad / sensorStr if sensorStr != 0 else None # http://www.eveonline.com/ingameboard.asp?a=topic&threadID=1532170&page=2#42 if probeSize is not None: - # http://forum.eve-ru.com/index.php?showtopic=74195&view=findpost&p=1333691 - # http://forum.eve-ru.com/index.php?showtopic=74195&view=findpost&p=1333763 - # Tests by tester128 and several conclusions by me, prove that cap is in range - # from 1.1 to 1.12, we're picking average value - probeSize = max(probeSize, 1.11) + # Probe size is capped at 1.08 + probeSize = max(probeSize, 1.08) return probeSize @property