fix lightning, add corsair; update packages

This commit is contained in:
41666 2023-05-20 23:17:57 -04:00
parent bca70e2d5b
commit 24437b5520
4 changed files with 209 additions and 72 deletions

View file

@ -135,12 +135,18 @@ impl Vehicles {
vehicle_name: "javelin".to_string(),
}
}
async fn corsair(&self) -> Vehicle {
Vehicle {
filters: self.filters.clone(),
vehicle_name: "corsair".to_string(),
}
}
// Tanks
async fn lightning(&self) -> Vehicle {
Vehicle {
filters: self.filters.clone(),
vehicle_name: "javelin".to_string(),
vehicle_name: "lightning".to_string(),
}
}
async fn prowler(&self) -> Vehicle {