Whether the knight is ready to javelin. Tests whether the knight's ability heat is sufficiently low.
(&self, knight_id: UnitID)
| 1495 | /// Whether the knight is ready to javelin. Tests whether the knight's |
| 1496 | /// ability heat is sufficiently low. |
| 1497 | pub fn is_javelin_ready(&self, knight_id: UnitID) -> bool { |
| 1498 | self.ok_if_javelin_ready(knight_id).is_ok() |
| 1499 | } |
| 1500 | |
| 1501 | /// Javelins the robot, dealing the knight's standard damage. |
| 1502 | /// |
nothing calls this directly
no test coverage detected