diff --git a/src/ship/location.rs b/src/ship/location.rs index 7aa5541..666b797 100644 --- a/src/ship/location.rs +++ b/src/ship/location.rs @@ -293,7 +293,7 @@ impl ClientLocation { .any(|k| k); } - pub fn get_clients_in_room(&self, room_id: RoomId) -> u8 { + pub fn get_client_count_in_room(&self, room_id: RoomId) -> u8 { self.rooms[room_id.0].as_ref() .unwrap() .read() diff --git a/src/ship/ship.rs b/src/ship/ship.rs index e3f9649..89c73fb 100644 --- a/src/ship/ship.rs +++ b/src/ship/ship.rs @@ -447,7 +447,7 @@ impl ShipServerState { menu_id: ROOM_MENU_ID, item_id: i as u32, difficulty: room.get_difficulty_for_room_list(), - players: self.client_location.get_clients_in_room(RoomId(i)), // TODO + players: self.client_location.get_client_count_in_room(RoomId(i)), // TODO name: libpso::utf8_to_utf16_array!(room.name, 16), episode: room.get_episode_for_room_list(), flags: room.get_flags_for_room_list(),