(fit, module, context, projectionRange, **kwargs)
| 7736 | |
| 7737 | @staticmethod |
| 7738 | def handler(fit, module, context, projectionRange, **kwargs): |
| 7739 | penalize = False if 'booster' in context else True |
| 7740 | fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == 'Projectile Weapon', |
| 7741 | 'maxRange', module.getModifiedItemAttr('maxRangeBonus'), |
| 7742 | stackingPenalties=penalize, **kwargs) |
| 7743 | |
| 7744 | |
| 7745 | class Effect2706(BaseEffect): |
nothing calls this directly
no test coverage detected