(self)
| 1296 | |
| 1297 | @property |
| 1298 | def droneBandwidthUsed(self): |
| 1299 | amount = 0 |
| 1300 | for d in self.drones: |
| 1301 | amount += d.getModifiedItemAttr("droneBandwidthUsed") * d.amountActive |
| 1302 | |
| 1303 | return amount |
| 1304 | |
| 1305 | @property |
| 1306 | def droneBayUsed(self): |
nothing calls this directly
no test coverage detected