diff -r 16d3c9acd715 -r 24f692e791d3 rust/hedgewars-server/src/handlers/inlobby.rs --- a/rust/hedgewars-server/src/handlers/inlobby.rs Tue Dec 24 20:57:58 2019 +0300 +++ b/rust/hedgewars-server/src/handlers/inlobby.rs Tue Dec 24 21:45:26 2019 +0300 @@ -103,8 +103,8 @@ html.push(format!( "{}{}{}", super::utils::protocol_version_string(protocol), - server.protocol_clients(protocol).count(), - server.protocol_rooms(protocol).count() + server.protocol_client_ids(protocol).count(), + server.protocol_room_ids(protocol).count() )); } html.push("".to_string());