MEOW MEOW MEOW
This commit is contained in:
@@ -2826,7 +2826,7 @@ internal sealed class PairHandlerAdapter : DisposableMediatorSubscriberBase, IPa
|
||||
HandleVisibilityLoss(logChange: false);
|
||||
}
|
||||
|
||||
private static bool TryResolveDescriptorHash(ActorObjectService.ActorDescriptor descriptor, out string hashedCid)
|
||||
private bool TryResolveDescriptorHash(ActorObjectService.ActorDescriptor descriptor, out string hashedCid)
|
||||
{
|
||||
hashedCid = descriptor.HashedContentId ?? string.Empty;
|
||||
if (!string.IsNullOrEmpty(hashedCid))
|
||||
@@ -2835,8 +2835,8 @@ internal sealed class PairHandlerAdapter : DisposableMediatorSubscriberBase, IPa
|
||||
if (descriptor.ObjectKind != DalamudObjectKind.Player || descriptor.Address == nint.Zero)
|
||||
return false;
|
||||
|
||||
hashedCid = DalamudUtilService.GetHashedCIDFromPlayerPointer(descriptor.Address);
|
||||
return !string.IsNullOrEmpty(hashedCid);
|
||||
return _dalamudUtil.TryGetHashedCIDFromAddress(descriptor.Address, out hashedCid)
|
||||
&& !string.IsNullOrEmpty(hashedCid);
|
||||
}
|
||||
|
||||
private void UpdateLastKnownActor(ActorObjectService.ActorDescriptor descriptor)
|
||||
|
||||
Reference in New Issue
Block a user