(fit, beacon, context, projectionRange, **kwargs)
| 89 | |
| 90 | @staticmethod |
| 91 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 92 | for i in range(1, 5): |
| 93 | if id := beacon.getModifiedItemAttr(f'warfareBuff{i}ID'): |
| 94 | value = beacon.getModifiedItemAttr(f'warfareBuff{i}Value') |
| 95 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 96 | |
| 97 | |
| 98 | class Effect4(BaseEffect): |
nothing calls this directly
no test coverage detected