mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Add tails and Height 255 to available NPC options.
This commit is contained in:
parent
1d974a0c6c
commit
c49102959f
2 changed files with 5 additions and 2 deletions
|
|
@ -1,5 +1,4 @@
|
|||
using Dalamud.Interface.Textures;
|
||||
using Dalamud.Interface.Textures.TextureWraps;
|
||||
using Dalamud.Plugin.Services;
|
||||
using OtterGui.Classes;
|
||||
using OtterGui.Services;
|
||||
|
|
|
|||
|
|
@ -84,9 +84,13 @@ internal class CustomizeSetFactory(
|
|||
CustomizeIndex.TattooColor,
|
||||
CustomizeIndex.EyeColorLeft,
|
||||
CustomizeIndex.EyeColorRight,
|
||||
CustomizeIndex.TailShape,
|
||||
};
|
||||
|
||||
var npcCustomizations = new HashSet<(CustomizeIndex, CustomizeValue)>();
|
||||
var npcCustomizations = new HashSet<(CustomizeIndex, CustomizeValue)>()
|
||||
{
|
||||
(CustomizeIndex.Height, CustomizeValue.Max),
|
||||
};
|
||||
_npcCustomizeSet.Awaiter.Wait();
|
||||
foreach (var customize in _npcCustomizeSet.Select(s => s.Customize)
|
||||
.Where(c => c.Clan == race && c.Gender == gender && c.BodyType.Value == 1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue