Add BodyHideGloveCuffs name to eqp entries.

This commit is contained in:
Ottermandias 2025-03-16 15:45:42 +01:00
parent dc47a08988
commit 0213096c58
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit c59dd2e6724be71dfe6ade11dacf405f29634fde
Subproject commit 1c1b3d1b2f050ae0424cb299d30b2bbb65514aa6

View file

@ -48,8 +48,8 @@ public sealed class EqpCache(MetaFileManager manager, ModCollection collection)
? entry.HasFlag(EqpEntry.BodyHideGlovesL)
: entry.HasFlag(EqpEntry.BodyHideGlovesM);
return testFlag
? (entry | EqpEntry._4) & ~EqpEntry.BodyHideGlovesS
: entry & ~(EqpEntry._4 | EqpEntry.BodyHideGlovesS);
? (entry | EqpEntry.BodyHideGloveCuffs) & ~EqpEntry.BodyHideGlovesS
: entry & ~(EqpEntry.BodyHideGloveCuffs | EqpEntry.BodyHideGlovesS);
}
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]