mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 10:17:23 +01:00
Order Hair and Facepaint by id instead of idx.
This commit is contained in:
parent
7022fc4fc9
commit
8090c370fd
1 changed files with 2 additions and 2 deletions
|
|
@ -436,7 +436,7 @@ public partial class CustomizationOptions
|
|||
(ushort)hairRow.RowId));
|
||||
}
|
||||
|
||||
return hairList.ToArray();
|
||||
return hairList.OrderBy(h => h.Value.Value).ToArray();
|
||||
}
|
||||
|
||||
// Get Features.
|
||||
|
|
@ -481,7 +481,7 @@ public partial class CustomizationOptions
|
|||
paintList.Add(new CustomizeData(CustomizeIndex.FacePaint, (CustomizeValue)i, customizeIdx));
|
||||
}
|
||||
|
||||
return paintList.ToArray();
|
||||
return paintList.OrderBy(p => p.Value.Value).ToArray();
|
||||
}
|
||||
|
||||
// Specific icons for tails or ears.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue