(fit, beacon, context, projectionRange, **kwargs)
| 34158 | |
| 34159 | @staticmethod |
| 34160 | def handler(fit, beacon, context, projectionRange, **kwargs): |
| 34161 | for x in range(1, 3): |
| 34162 | if beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)): |
| 34163 | value = beacon.getModifiedItemAttr('warfareBuff{}Value'.format(x)) |
| 34164 | id = beacon.getModifiedItemAttr('warfareBuff{}ID'.format(x)) |
| 34165 | if id: |
| 34166 | fit.addCommandBonus(id, value, beacon, kwargs['effect'], 'early') |
| 34167 | |
| 34168 | |
| 34169 | class Effect7051(BaseEffect): |
nothing calls this directly
no test coverage detected