formatting
This commit is contained in:
parent
412d4b8e81
commit
4989ecaa7c
@ -91,15 +91,15 @@ pub async fn change_lobby<EG: EntityGateway>(id: ClientId,
|
|||||||
let old_neighbors = client_location.get_client_neighbors(id).unwrap();
|
let old_neighbors = client_location.get_client_neighbors(id).unwrap();
|
||||||
let mut lobby = LobbyId(requested_lobby as usize);
|
let mut lobby = LobbyId(requested_lobby as usize);
|
||||||
if let Err(_) = client_location.add_client_to_lobby(id, lobby) {
|
if let Err(_) = client_location.add_client_to_lobby(id, lobby) {
|
||||||
match prev_area {
|
match prev_area {
|
||||||
RoomLobby::Lobby(_lobby) => {
|
RoomLobby::Lobby(_lobby) => {
|
||||||
let dialog = SmallDialog::new(String::from("Lobby is full."));
|
let dialog = SmallDialog::new(String::from("Lobby is full."));
|
||||||
return Ok(vec![(id, SendShipPacket::SmallDialog(dialog))])
|
return Ok(vec![(id, SendShipPacket::SmallDialog(dialog))])
|
||||||
}
|
|
||||||
RoomLobby::Room(_room) => {
|
|
||||||
lobby = client_location.add_client_to_next_available_lobby(id, lobby).map_err(|_| ShipError::TooManyClients)?;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
RoomLobby::Room(_room) => {
|
||||||
|
lobby = client_location.add_client_to_next_available_lobby(id, lobby).map_err(|_| ShipError::TooManyClients)?;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
item_manager.load_character(entity_gateway, &client.character).await;
|
item_manager.load_character(entity_gateway, &client.character).await;
|
||||||
let join_lobby = packet::builder::lobby::join_lobby(id, lobby, client_location, clients, item_manager, level_table)?;
|
let join_lobby = packet::builder::lobby::join_lobby(id, lobby, client_location, clients, item_manager, level_table)?;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user