1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Make enemy and teammate count customizable

This commit is contained in:
NG (Graham)
2025-06-02 20:08:25 -04:00
parent 36a58eaed1
commit d0c2b1ec03
11 changed files with 98 additions and 40 deletions

View File

@@ -321,20 +321,27 @@ pub(super) fn default_campaigns() -> super::SingleplayerConfig {
vehicles: vec![
super::PrefabVehicle {
name: Some("Config your singleplayer!".to_owned()),
username: "NGnius!".to_owned(),
id: super::PrefabId::Database { garage: 1 }
username: "NGnius?".to_owned(),
id: super::PrefabId::Database { garage: 1 },
},
super::PrefabVehicle {
name: Some("Config your singleplayer!".to_owned()),
username: "NGram!".to_owned(),
id: super::PrefabId::Database { garage: 1 }
id: super::PrefabId::Database { garage: 1 },
},
super::PrefabVehicle {
name: Some("Config your singleplayer!".to_owned()),
username: "NGniusness!".to_owned(),
id: super::PrefabId::Database { garage: 1 }
username: "NGniusness*".to_owned(),
id: super::PrefabId::Database { garage: 1 },
},
super::PrefabVehicle {
name: Some("Config your singleplayer!".to_owned()),
username: "NG~".to_owned(),
id: super::PrefabId::Database { garage: 1 },
},
],
max_teammates: 0,
max_enemies: 5,
}
}