From 13fc380dd515912d246273164b4c661b391aa0cf Mon Sep 17 00:00:00 2001 From: goat Date: Sat, 15 Jun 2024 23:09:08 +0200 Subject: [PATCH] disable autoupdate dry run by default --- Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs b/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs index ce7b5af9d..4e2179be8 100644 --- a/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs +++ b/Dalamud/Plugin/Internal/AutoUpdate/AutoUpdateManager.cs @@ -87,7 +87,7 @@ internal class AutoUpdateManager : IServiceType }); Service.GetAsync().ContinueWith(t => { t.Result.Update += this.OnUpdate; }); - this.isDryRun = console.AddVariable("dalamud.autoupdate.dry_run", "Simulate updates instead", true); + this.isDryRun = console.AddVariable("dalamud.autoupdate.dry_run", "Simulate updates instead", false); console.AddCommand("dalamud.autoupdate.trigger_login", "Trigger a login event", () => { this.hasStartedInitialUpdateThisSession = false;