save
Some checks failed
Rust Checks / checks (push) Failing after 5s

This commit is contained in:
CoCo_Sol 2024-03-16 21:47:33 +01:00
parent 6b2c00614e
commit 3f67e97c4b
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ fn create_players(
) {
all_players
.0
.insert((*name.0).to_string(), *uuid.identifier().unwrap());
.insert((*name.0).to_string(), uuid.identifier().unwrap());
}
/// Display the UI of the lobby.

View file

@ -5,7 +5,7 @@ use bevy::prelude::*;
use bevy_egui::{egui, EguiContexts};
use crate::connection::RequestConnection;
use crate::{CurrentScene, PlayerName};
use crate::{CurrentScene, CurrentScene, PlayerName, PlayerName};
type Name = String;