mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix GameObject.Name length
This commit is contained in:
parent
2c0337762a
commit
69561fe407
1 changed files with 1 additions and 1 deletions
|
|
@ -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" />.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue