From 10c4dbc1f88d5516bfcba7bd756f43846038c229 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Sun, 5 Jun 2022 19:28:52 +0200 Subject: [PATCH] Change default for preferring owners. --- Penumbra/Configuration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Penumbra/Configuration.cs b/Penumbra/Configuration.cs index a4dc6be1..5888a8e1 100644 --- a/Penumbra/Configuration.cs +++ b/Penumbra/Configuration.cs @@ -26,7 +26,7 @@ public partial class Configuration : IPluginConfiguration public bool UseCharacterCollectionInInspect { get; set; } = true; public bool UseCharacterCollectionInTryOn { get; set; } = true; public bool UseOwnerNameForCharacterCollection { get; set; } = true; - public bool PreferNamedCollectionsOverOwners { get; set; } = false; + public bool PreferNamedCollectionsOverOwners { get; set; } = true; #if DEBUG public bool DebugMode { get; set; } = true;