(self)
| 1024 | |
| 1025 | @property |
| 1026 | def rawCycleTime(self): |
| 1027 | speed = max( |
| 1028 | self.getModifiedItemAttr("speed", 0), # Most weapons |
| 1029 | self.getModifiedItemAttr("duration", 0), # Most average modules |
| 1030 | self.getModifiedItemAttr("durationHighisGood", 0), # Most average modules |
| 1031 | self.getModifiedItemAttr("durationSensorDampeningBurstProjector", 0), |
| 1032 | self.getModifiedItemAttr("durationTargetIlluminationBurstProjector", 0), |
| 1033 | self.getModifiedItemAttr("durationECMJammerBurstProjector", 0), |
| 1034 | self.getModifiedItemAttr("durationWeaponDisruptionBurstProjector", 0) |
| 1035 | ) |
| 1036 | return speed |
| 1037 | |
| 1038 | @property |
| 1039 | def disallowRepeatingAction(self): |
nothing calls this directly
no test coverage detected