diff -r 0b2e0a7d0431 -r fb389df02e3e rust/hedgewars-server/src/core/server.rs --- a/rust/hedgewars-server/src/core/server.rs Mon Feb 12 21:26:35 2024 +0300 +++ b/rust/hedgewars-server/src/core/server.rs Tue Feb 13 00:58:17 2024 +0300 @@ -199,7 +199,7 @@ impl HwServer { pub fn new(clients_limit: usize, rooms_limit: usize) -> Self { - todo!("add reconnection IDs"); + //todo!("add reconnection IDs"); let rooms = Slab::with_capacity(rooms_limit); let clients = IndexSlab::with_capacity(clients_limit); let checkers = IndexSlab::new(); @@ -780,7 +780,7 @@ VoteType::NewSeed => { let seed = thread_rng().gen_range(0..1_000_000_000).to_string(); let cfg = GameCfg::Seed(seed); - todo!("Protocol backwards compatibility"); + //todo!("Protocol backwards compatibility"); self.room_mut().set_config(cfg.clone()); Some(VoteEffect::NewSeed(cfg)) }