mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 20:24:16 +01:00
Fix breaking changes when updating ClientStructs
This commit is contained in:
parent
dd7939b7ec
commit
24d83f0c94
3 changed files with 3 additions and 3 deletions
|
|
@ -33,6 +33,6 @@ namespace Dalamud.Game.ClientState.Objects.SubKinds
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the target actor ID of the PlayerCharacter.
|
/// Gets the target actor ID of the PlayerCharacter.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override uint TargetObjectId => this.Struct->Character.GameObject.TargetObjectID;
|
public override uint TargetObjectId => this.Struct->Character.TargetObjectID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ namespace Dalamud.Game.ClientState.Objects.Types
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the target object ID of the character.
|
/// Gets the target object ID of the character.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override uint TargetObjectId => this.Struct->GameObject.TargetObjectID;
|
public override uint TargetObjectId => this.Struct->TargetObjectID;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the name ID of the character.
|
/// Gets the name ID of the character.
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit f7a29c9fcb65f88eb8157e8645dd7231ed0b581a
|
Subproject commit 47802afd09afe2cf3bd4c92bedc433c8a5bb9ab3
|
||||||
Loading…
Add table
Add a link
Reference in a new issue