(self)
| 972 | del self.commandBonuses[warfareBuffID] |
| 973 | |
| 974 | def __resetDependentCalcs(self): |
| 975 | self.calculated = False |
| 976 | for value in list(self.projectedOnto.values()): |
| 977 | if value.victim_fit: # removing a self-projected fit causes victim fit to be None. @todo: look into why. :3 |
| 978 | value.victim_fit.calculated = False |
| 979 | |
| 980 | def calculateModifiedAttributes(self, targetFit=None, type=CalcType.LOCAL): |
| 981 | """ |
no test coverage detected