Hair style fixes.
Can color facial hair again. Fix sort for hair styles to use name instead of ID.
This commit is contained in:
@@ -802,7 +802,7 @@ namespace Content.Client.UserInterface
|
||||
Profile.Appearance.FacialHairColor,
|
||||
Profile.Appearance.FacialHairStyleId,
|
||||
SpriteAccessoryCategories.HumanFacialHair,
|
||||
false);
|
||||
true);
|
||||
}
|
||||
|
||||
private void UpdateEyePickers()
|
||||
|
||||
@@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user