From dab8af0f5aa8cc94cdd5a2caa5d439fbca86b51b Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Thu, 28 Sep 2023 21:37:48 +0200 Subject: [PATCH] Turn Restricted Gear Protection off by default. --- Glamourer/Configuration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamourer/Configuration.cs b/Glamourer/Configuration.cs index 3b96249..0d0573e 100644 --- a/Glamourer/Configuration.cs +++ b/Glamourer/Configuration.cs @@ -19,7 +19,7 @@ namespace Glamourer; public class Configuration : IPluginConfiguration, ISavable { public bool Enabled { get; set; } = true; - public bool UseRestrictedGearProtection { get; set; } = true; + public bool UseRestrictedGearProtection { get; set; } = false; public bool OpenFoldersByDefault { get; set; } = false; public bool AutoRedrawEquipOnChanges { get; set; } = false; public bool EnableAutoDesigns { get; set; } = true;