(self)
| 48 | |
| 49 | @property |
| 50 | def shortName(self): |
| 51 | if self.isFit: |
| 52 | return '{} ({})'.format(self.item.name, self.item.ship.item.getShortName()) |
| 53 | elif self.isProfile: |
| 54 | return self.item.shortName |
| 55 | return '' |
| 56 | |
| 57 | def getMaxVelocity(self, extraMultipliers=None, ignoreAfflictors=()): |
| 58 | if self.isFit: |
nothing calls this directly
no test coverage detected