diff --git a/ArchiSteamFarm/Core/ASF.cs b/ArchiSteamFarm/Core/ASF.cs index ff521a532..2a1d4e1eb 100644 --- a/ArchiSteamFarm/Core/ASF.cs +++ b/ArchiSteamFarm/Core/ASF.cs @@ -825,6 +825,11 @@ public static class ASF { } private static async Task ProtectAgainstCrashes() { + if (Debugging.IsDebugBuild) { + // Allow debug builds to run unconditionally, we expect to crash a lot in those + return true; + } + string crashFilePath = GetFilePath(EFileType.Crash); CrashFile crashFile = await CrashFile.CreateOrLoad(crashFilePath).ConfigureAwait(false);