mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 23:37:44 +01:00
commit
1eab0ef770
9 changed files with 40 additions and 13 deletions
|
|
@ -88,6 +88,11 @@ namespace Dalamud.Game.ClientState.Objects.Types
|
|||
/// </summary>
|
||||
public override uint TargetObjectId => this.Struct->GameObject.TargetObjectID;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name ID of the character.
|
||||
/// </summary>
|
||||
public uint NameId => this.Struct->NameID;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the status flags.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ namespace Dalamud.Game.ClientState.Objects.Types
|
|||
/// <summary>
|
||||
/// Gets the name of this <see cref="GameObject" />.
|
||||
/// </summary>
|
||||
public SeString Name => MemoryHelper.ReadSeString((IntPtr)this.Struct->Name, 32);
|
||||
public SeString Name => MemoryHelper.ReadSeString((IntPtr)this.Struct->Name, 64);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the object ID of this <see cref="GameObject" />.
|
||||
|
|
|
|||
|
|
@ -107,7 +107,6 @@ namespace Dalamud.Game.Gui.FlyText
|
|||
/// </summary>
|
||||
public void Dispose()
|
||||
{
|
||||
this.createFlyTextHook.Disable();
|
||||
this.createFlyTextHook.Dispose();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue