make default flock size 1k instead of 5k

This commit is contained in:
Joe Ardent 2024-12-05 09:56:26 -08:00
parent 9225408422
commit b5f89d0215

View file

@ -28,7 +28,7 @@ const MIN_ALTITUDE: f32 = 13.5;
/// Toid Watching /// Toid Watching
pub struct Config { pub struct Config {
/// how many Toids to spawn /// how many Toids to spawn
#[argh(option, short = 't', default = "5_000")] #[argh(option, short = 't', default = "1_000")]
pub toids: usize, pub toids: usize,
} }