rename function
This commit is contained in:
parent
38b0cac09b
commit
648fdfc0ec
@ -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()
|
||||
|
@ -447,7 +447,7 @@ impl<EG: EntityGateway> ShipServerState<EG> {
|
||||
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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user