diff --git a/Content.Client/UserInterface/HumanoidProfileEditor.cs b/Content.Client/UserInterface/HumanoidProfileEditor.cs index 55319fba4b..2626b963f7 100644 --- a/Content.Client/UserInterface/HumanoidProfileEditor.cs +++ b/Content.Client/UserInterface/HumanoidProfileEditor.cs @@ -802,7 +802,7 @@ namespace Content.Client.UserInterface Profile.Appearance.FacialHairColor, Profile.Appearance.FacialHairStyleId, SpriteAccessoryCategories.HumanFacialHair, - false); + true); } private void UpdateEyePickers() diff --git a/Content.Shared/Preferences/Appearance/HairStyles.cs b/Content.Shared/Preferences/Appearance/HairStyles.cs index f33b522bf4..9c88ddbea8 100644 --- a/Content.Shared/Preferences/Appearance/HairStyles.cs +++ b/Content.Shared/Preferences/Appearance/HairStyles.cs @@ -30,7 +30,7 @@ namespace Content.Shared.Preferences.Appearance if (cmp != 0) return cmp; - return string.Compare(a.ID, b.ID, StringComparison.CurrentCulture); + return string.Compare(a.Name, b.Name, StringComparison.CurrentCulture); }); } }