(fit, container, context, projectionRange, **kwargs)
| 4420 | |
| 4421 | @staticmethod |
| 4422 | def handler(fit, container, context, projectionRange, **kwargs): |
| 4423 | level = container.level if 'skill' in context else 1 |
| 4424 | penalize = False if 'skill' in context or 'booster' in context else True |
| 4425 | fit.modules.filteredItemBoost(lambda mod: mod.item.requiresSkill('Sensor Linking'), |
| 4426 | 'maxRange', container.getModifiedItemAttr('rangeSkillBonus') * level, |
| 4427 | stackingPenalties=penalize, **kwargs) |
| 4428 | |
| 4429 | |
| 4430 | class Effect1446(BaseEffect): |
nothing calls this directly
no test coverage detected