From 373ead8da69368ff6d524e4a7d51859dd71e3add Mon Sep 17 00:00:00 2001 From: Ryan Holmes Date: Wed, 31 May 2017 23:14:17 -0400 Subject: [PATCH] Add structure painter / web to dps graph (#1203) (#1202) --- eos/graph/fitDps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/graph/fitDps.py b/eos/graph/fitDps.py index cfa70187a..12cfda8d1 100644 --- a/eos/graph/fitDps.py +++ b/eos/graph/fitDps.py @@ -47,11 +47,11 @@ class FitDpsGraph(Graph): for mod in fit.modules: if not mod.isEmpty and mod.state >= State.ACTIVE: - if "remoteTargetPaintFalloff" in mod.item.effects: + if "remoteTargetPaintFalloff" in mod.item.effects or "structureModuleEffectTargetPainter" in mod.item.effects: ew['signatureRadius'].append( 1 + (mod.getModifiedItemAttr("signatureRadiusBonus") / 100) * self.calculateModuleMultiplier( mod, data)) - if "remoteWebifierFalloff" in mod.item.effects: + if "remoteWebifierFalloff" in mod.item.effects or "structureModuleEffectStasisWebifier" in mod.item.effects: if distance <= mod.getModifiedItemAttr("maxRange"): ew['velocity'].append(1 + (mod.getModifiedItemAttr("speedFactor") / 100)) elif mod.getModifiedItemAttr("falloffEffectiveness") > 0: