mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix female Hrothgar fucking up eqdp accessories
This commit is contained in:
parent
ba0ef577c5
commit
d8e3eafa7d
2 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ public unsafe struct CharacterUtility
|
|||
{
|
||||
// TODO: female Hrothgar
|
||||
public static readonly int[] EqdpIndices
|
||||
= Enumerable.Range( EqdpStartIdx, NumEqdpFiles ).Where( i => i != EqdpStartIdx + 15 ).ToArray();
|
||||
= Enumerable.Range( EqdpStartIdx, NumEqdpFiles ).Where( i => i != EqdpStartIdx + 15 && i != EqdpStartIdx + 15 + NumEqdpFiles / 2 ).ToArray();
|
||||
|
||||
public const int NumResources = 85;
|
||||
public const int EqpIdx = 0;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ public partial class MetaManager
|
|||
{
|
||||
public struct MetaManagerEqdp : IDisposable
|
||||
{
|
||||
public ExpandedEqdpFile?[] Files = new ExpandedEqdpFile?[CharacterUtility.NumEqdpFiles - 1]; // TODO: female Hrothgar
|
||||
public ExpandedEqdpFile?[] Files = new ExpandedEqdpFile?[CharacterUtility.NumEqdpFiles - 2]; // TODO: female Hrothgar
|
||||
|
||||
public readonly Dictionary< EqdpManipulation, int > Manipulations = new();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue