(fit, module, context, projectionRange, **kwargs)
| 27470 | |
| 27471 | @staticmethod |
| 27472 | def handler(fit, module, context, projectionRange, **kwargs): |
| 27473 | if 'projected' not in context: |
| 27474 | return |
| 27475 | if fit.ship.getModifiedItemAttr('disallowOffensiveModifiers'): |
| 27476 | return |
| 27477 | fit.ship.boostItemAttr('maxTargetRange', module.getModifiedItemAttr('maxTargetRangeBonus'), |
| 27478 | stackingPenalties=True, **kwargs) |
| 27479 | fit.ship.boostItemAttr('scanResolution', module.getModifiedItemAttr('scanResolutionBonus'), |
| 27480 | stackingPenalties=True, **kwargs) |
| 27481 | |
| 27482 | |
| 27483 | class Effect6482(BaseEffect): |
nothing calls this directly
no test coverage detected