From 2412e3be085e7b7c8e643441a4830f2b2282160b Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 11 Jul 2022 17:25:17 +0200 Subject: [PATCH] Change default values of AutoDeduplicate and EnableHttp to true. --- Penumbra/Configuration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Penumbra/Configuration.cs b/Penumbra/Configuration.cs index 8ef57b86..6294f42b 100644 --- a/Penumbra/Configuration.cs +++ b/Penumbra/Configuration.cs @@ -58,8 +58,8 @@ public partial class Configuration : IPluginConfiguration public bool FixMainWindow { get; set; } = false; public bool ShowAdvanced { get; set; } - public bool AutoDeduplicateOnImport { get; set; } = false; - public bool EnableHttpApi { get; set; } + public bool AutoDeduplicateOnImport { get; set; } = true; + public bool EnableHttpApi { get; set; } = true; public string DefaultModImportPath { get; set; } = string.Empty; public bool AlwaysOpenDefaultImport { get; set; } = false;