(fit, beacon, context, projectionRange, **kwargs)
| 34332 | |
| 34333 | @staticmethod |
| 34334 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34335 | for x in range(1, 3): |
| 34336 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34337 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34338 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34339 | |
| 34340 | if id: |
| 34341 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34342 | |
| 34343 | |
| 34344 | class Effect7062(BaseEffect): |
nothing calls this directly
no test coverage detected