diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 402167342b..6eb5dd9ec9 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -194,7 +194,6 @@ public override void LoadProfile(EntityUid uid, HumanoidCharacterProfile? profil humanoid.Sex = profile.Sex; humanoid.Gender = profile.Gender; humanoid.Age = profile.Age; - humanoid.Height = profile.Height; humanoid.Species = profile.Species; humanoid.SkinColor = profile.Appearance.SkinColor; humanoid.EyeColor = profile.Appearance.EyeColor; diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index e8e619ae6d..e80e0bf7d8 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -327,16 +327,16 @@ public HumanoidProfileEditor( #region SpawnPriority - foreach (var value in Enum.GetValues()) - { - SpawnPriorityButton.AddItem(Loc.GetString($"humanoid-profile-editor-preference-spawn-priority-{value.ToString().ToLower()}"), (int) value); - } - - SpawnPriorityButton.OnItemSelected += args => - { - SpawnPriorityButton.SelectId(args.Id); - SetSpawnPriority((SpawnPriorityPreference) args.Id); - }; + // foreach (var value in Enum.GetValues()) + // { + // SpawnPriorityButton.AddItem(Loc.GetString($"humanoid-profile-editor-preference-spawn-priority-{value.ToString().ToLower()}"), (int) value); + // } + // + // SpawnPriorityButton.OnItemSelected += args => + // { + // SpawnPriorityButton.SelectId(args.Id); + // SetSpawnPriority((SpawnPriorityPreference) args.Id); + // }; #endregion SpawnPriority @@ -1367,7 +1367,7 @@ private void UpdateSpawnPriorityControls() return; } - SpawnPriorityButton.SelectId((int) Profile.SpawnPriority); + // SpawnPriorityButton.SelectId((int) Profile.SpawnPriority); } private void UpdateHairPickers() diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index 5fe261a7c9..9df0c3d8f0 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -146,6 +146,8 @@