diff --git a/LightlessSync/Services/DalamudUtilService.cs b/LightlessSync/Services/DalamudUtilService.cs index b7958db..106adf2 100644 --- a/LightlessSync/Services/DalamudUtilService.cs +++ b/LightlessSync/Services/DalamudUtilService.cs @@ -327,8 +327,8 @@ public class DalamudUtilService : IHostedService, IMediatorSubscriber public IEnumerable GetGposeCharactersFromObjectTable() { - foreach (var actor in _actorObjectService.PlayerDescriptors - .Where(a => a.ObjectKind == DalamudObjectKind.Player && a.ObjectIndex > 200)) + foreach (var actor in _objectTable + .Where(a => a.ObjectIndex > 200 && a.ObjectKind == DalamudObjectKind.Player)) { var character = _objectTable.CreateObjectReference(actor.Address) as ICharacter; if (character != null)