mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Add BodyHideGloveCuffs name to eqp entries.
This commit is contained in:
parent
dc47a08988
commit
0213096c58
2 changed files with 3 additions and 3 deletions
|
|
@ -1 +1 @@
|
||||||
Subproject commit c59dd2e6724be71dfe6ade11dacf405f29634fde
|
Subproject commit 1c1b3d1b2f050ae0424cb299d30b2bbb65514aa6
|
||||||
|
|
@ -48,8 +48,8 @@ public sealed class EqpCache(MetaFileManager manager, ModCollection collection)
|
||||||
? entry.HasFlag(EqpEntry.BodyHideGlovesL)
|
? entry.HasFlag(EqpEntry.BodyHideGlovesL)
|
||||||
: entry.HasFlag(EqpEntry.BodyHideGlovesM);
|
: entry.HasFlag(EqpEntry.BodyHideGlovesM);
|
||||||
return testFlag
|
return testFlag
|
||||||
? (entry | EqpEntry._4) & ~EqpEntry.BodyHideGlovesS
|
? (entry | EqpEntry.BodyHideGloveCuffs) & ~EqpEntry.BodyHideGlovesS
|
||||||
: entry & ~(EqpEntry._4 | EqpEntry.BodyHideGlovesS);
|
: entry & ~(EqpEntry.BodyHideGloveCuffs | EqpEntry.BodyHideGlovesS);
|
||||||
}
|
}
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
|
[MethodImpl(MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization)]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue