(fit, container, context, projectionRange, **kwargs)
| 8265 | |
| 8266 | @staticmethod |
| 8267 | def handler(fit, container, context, projectionRange, **kwargs): |
| 8268 | level = container.level if 'skill' in context else 1 |
| 8269 | attrs = ('boosterTurretFalloffPenalty', 'boosterTurretOptimalRangePenalty', 'boosterTurretTrackingPenalty') |
| 8270 | for attr in attrs: |
| 8271 | fit.boosters.filteredItemBoost(lambda booster: True, attr, |
| 8272 | container.getModifiedItemAttr('boosterAttributeModifier') * level, **kwargs) |
| 8273 | |
| 8274 | |
| 8275 | class Effect2791(BaseEffect): |
nothing calls this directly
no test coverage detected