Add second ID to retainer check.

This commit is contained in:
Ottermandias 2022-07-04 11:10:25 +02:00
parent 0ce41f82a6
commit 8fd9569508

View file

@ -297,7 +297,7 @@ public unsafe partial class PathResolver
// Housing Retainers // Housing Retainers
if( Penumbra.Config.UseDefaultCollectionForRetainers if( Penumbra.Config.UseDefaultCollectionForRetainers
&& gameObject->ObjectKind == ( byte )ObjectKind.EventNpc && 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; return Penumbra.CollectionManager.Default;
} }