Add tails and Height 255 to available NPC options.

This commit is contained in:
Ottermandias 2024-10-18 15:34:39 +02:00
parent 1d974a0c6c
commit c49102959f
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,4 @@
using Dalamud.Interface.Textures;
using Dalamud.Interface.Textures.TextureWraps;
using Dalamud.Plugin.Services;
using OtterGui.Classes;
using OtterGui.Services;

View file

@ -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))