Merge pull request #1805 from pyfa-org/issue/1793

Don't include non active fighters in dps graph
This commit is contained in:
Ryan Holmes
2018-11-20 21:43:24 -05:00
committed by GitHub

View File

@@ -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)