mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-16 12:57:47 +01:00
Fix some screen actors not respecting settings.
This commit is contained in:
parent
d23eab0530
commit
b7408f15fb
1 changed files with 3 additions and 3 deletions
|
|
@ -98,16 +98,16 @@ public sealed partial class IndividualCollections : IReadOnlyList< (string Displ
|
|||
identifier = _actorManager.GetInspectPlayer();
|
||||
if( identifier.IsValid )
|
||||
{
|
||||
return identifier;
|
||||
return Penumbra.Config.UseCharacterCollectionInInspect ? identifier : ActorIdentifier.Invalid;
|
||||
}
|
||||
|
||||
identifier = _actorManager.GetCardPlayer();
|
||||
if( identifier.IsValid )
|
||||
{
|
||||
return identifier;
|
||||
return Penumbra.Config.UseCharacterCollectionInInspect ? identifier : ActorIdentifier.Invalid;
|
||||
}
|
||||
|
||||
return _actorManager.GetGlamourPlayer();
|
||||
return Penumbra.Config.UseCharacterCollectionInTryOn ? _actorManager.GetGlamourPlayer() : ActorIdentifier.Invalid;
|
||||
}
|
||||
default: return identifier;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue