(fit, ship, context, projectionRange, **kwargs)
| 2309 | |
| 2310 | @staticmethod |
| 2311 | def handler(fit, ship, context, projectionRange, **kwargs): |
| 2312 | # TODO: investigate if we can live without such ifs or hardcoding |
| 2313 | # Viator doesn't have GI bonus |
| 2314 | if 'shipBonusGI' in fit.ship.item.attributes: |
| 2315 | bonusAttr = 'shipBonusGI' |
| 2316 | else: |
| 2317 | bonusAttr = 'shipBonusGI2' |
| 2318 | fit.ship.boostItemAttr('maxVelocity', ship.getModifiedItemAttr(bonusAttr), skill='Gallente Hauler', **kwargs) |
| 2319 | |
| 2320 | |
| 2321 | class Effect730(BaseEffect): |
nothing calls this directly
no test coverage detected