diff --git a/Dalamud/Game/ClientState/Objects/ObjectTable.cs b/Dalamud/Game/ClientState/Objects/ObjectTable.cs index 16bf5432f..d3ca884c0 100644 --- a/Dalamud/Game/ClientState/Objects/ObjectTable.cs +++ b/Dalamud/Game/ClientState/Objects/ObjectTable.cs @@ -271,6 +271,8 @@ internal sealed partial class ObjectTable var cache = this.owner!.cachedObjectTable.AsSpan(); for (this.index++; this.index < ObjectTableLength; this.index++) { + this.owner!.cachedObjectTable[this.index].Update(this.owner!.GetObjectAddressUnsafe(this.index)); + if (cache[this.index].ActiveObject is { } ao) { this.Current = ao;