Skip to content

Commit

Permalink
Merge pull request #2 from ottercorp/cn-6.3
Browse files Browse the repository at this point in the history
NamePlateInfo Fix
  • Loading branch information
wozaiha authored May 10, 2023
2 parents 7b8e39b + 08bff7f commit 52fd1eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FFXIVClientStructs/FFXIV/Client/UI/RaptureAtkModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public partial struct RaptureAtkModule
[FieldOffset(0x1B310)] public RaptureAtkModuleFlags Flags;

[FieldOffset(0x1B618)] public int NameplateInfoCount;
[FieldOffset(0x1B620)] public NamePlateInfo NamePlateInfoArray; // 0-50, &NamePlateInfoArray[i]
[FieldOffset(0x1B620 - 0x10)] public NamePlateInfo NamePlateInfoArray; // 0-50, &NamePlateInfoArray[i] CN - 0x10

[MemberFunction("E8 ?? ?? ?? ?? 0F B6 44 24 ?? 48 89 9F")]
public partial bool ChangeUiMode(uint uiMode);
Expand All @@ -30,7 +30,7 @@ public bool IsUiVisible {
set => SetUiVisibility(value);
}

[StructLayout(LayoutKind.Explicit, Size = 0x248 - 0x10)] //CN server exclusive, need confirm
[StructLayout(LayoutKind.Explicit, Size = 0x248)]
public struct NamePlateInfo
{
[FieldOffset(0x00)] public GameObjectID ObjectID;
Expand Down

0 comments on commit 52fd1eb

Please sign in to comment.