Add drone DPS/Volley to stats pane

This commit is contained in:
blitzmann
2016-04-26 22:18:00 -04:00
parent 4704c5a1b0
commit 0ad4f07591
2 changed files with 6 additions and 1 deletions

View File

@@ -995,6 +995,11 @@ class Fit(object):
droneDPS += dps
droneVolley += volley
for fighter in self.fighters:
dps, volley = fighter.damageStats(self.targetResists)
droneDPS += dps
droneVolley += volley
self.__weaponDPS = weaponDPS
self.__weaponVolley = weaponVolley
self.__droneDPS = droneDPS