From 3d4eef2466e8c8b08bbf77563dc491e0f7ad8bd8 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Thu, 11 Dec 2014 11:34:21 -0500 Subject: [PATCH] Fix #197, again --- eos/graph/fitDps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/graph/fitDps.py b/eos/graph/fitDps.py index d10d9f2b3..cbcb07996 100644 --- a/eos/graph/fitDps.py +++ b/eos/graph/fitDps.py @@ -71,7 +71,7 @@ class FitDpsGraph(Graph): if distance <= fit.extraAttributes["droneControlRange"]: for drone in fit.drones: multiplier = 1 if drone.getModifiedItemAttr("maxVelocity") > 0 else self.calculateTurretMultiplier(drone, data) - dps = drone.damageStats(fit.targetResists) + dps, _ = drone.damageStats(fit.targetResists) total += dps * multiplier return total