The active ability cooldown. InappropriateUnitType - the unit is not a robot.
(&self)
| 582 | /// |
| 583 | /// * InappropriateUnitType - the unit is not a robot. |
| 584 | pub fn ability_cooldown(&self) -> Result<u32, GameError>{ |
| 585 | self.ok_if_robot()?; |
| 586 | Ok(self.ability_cooldown) |
| 587 | } |
| 588 | |
| 589 | /// The active ability range. This is the range in which: workers can |
| 590 | /// replicate, knights can javelin, rangers can snipe, mages can blink, |
nothing calls this directly
no test coverage detected