From 8fd95695083c75350cd61a80d4f0f2697bdec5c7 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 4 Jul 2022 11:10:25 +0200 Subject: [PATCH] Add second ID to retainer check. --- Penumbra/Interop/Resolver/PathResolver.Data.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Penumbra/Interop/Resolver/PathResolver.Data.cs b/Penumbra/Interop/Resolver/PathResolver.Data.cs index 0da5d586..d7584648 100644 --- a/Penumbra/Interop/Resolver/PathResolver.Data.cs +++ b/Penumbra/Interop/Resolver/PathResolver.Data.cs @@ -297,7 +297,7 @@ public unsafe partial class PathResolver // Housing Retainers if( Penumbra.Config.UseDefaultCollectionForRetainers && gameObject->ObjectKind == ( byte )ObjectKind.EventNpc - && gameObject->DataID == 1011832 ) + && gameObject->DataID is 1011832 or 1011021 ) // cf. "E8 ?? ?? ?? ?? 0F B6 F8 88 45" { return Penumbra.CollectionManager.Default; }