chore: Fix compiler complaints

This commit is contained in:
Kaz Wolfe 2025-08-04 11:46:45 -07:00
parent 413fea4349
commit f0021bc8f9
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4
3 changed files with 6 additions and 2 deletions

View file

@ -55,7 +55,7 @@ public unsafe class Status
/// <summary>
/// Gets the source ID of this status.
/// </summary>
public uint SourceId => this.Struct->SourceId;
public uint SourceId => this.Struct->SourceObject.ObjectId;
/// <summary>
/// Gets the source actor associated with this status.

View file

@ -1,7 +1,7 @@
using System.Runtime.InteropServices;
using Dalamud.Game.NativeWrapper;
using Dalamud.Bindings.ImGui;
using Dalamud.Game.NativeWrapper;
using Dalamud.Game.Text.SeStringHandling.Payloads;
using Dalamud.Hooking;
using Dalamud.Interface.Utility;

View file

@ -162,6 +162,10 @@ public unsafe struct GameInventoryItem : IEquatable<GameInventoryItem>
}
}
/// <summary>
/// Gets a list of materia entries for this item. Exists as a user-friendly interface to <see cref="Materia"/> and
/// <see cref="MateriaGrade"/>.
/// </summary>
public IReadOnlyList<MateriaEntry> MateriaEntries
{
get