From bdcc05b7b695a8002455ceff30cefa61a8129863 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 20 Nov 2018 21:39:31 -0500 Subject: [PATCH] Don't include non active fighters in dps graph --- eos/graph/fitDps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eos/graph/fitDps.py b/eos/graph/fitDps.py index 71a95d26e..61783fdc7 100644 --- a/eos/graph/fitDps.py +++ b/eos/graph/fitDps.py @@ -93,6 +93,8 @@ class FitDpsGraph(Graph): # this is janky as fuck for fighter in fit.fighters: + if not fighter.active: + continue for ability in fighter.abilities: if ability.dealsDamage and ability.active: multiplier = self.calculateFighterMissileMultiplier(ability, data)