diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index beacf3a6b..78bbeeccb 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -144,12 +144,15 @@ namespace Dalamud var configuration = Service.Get(); var antiDebug = Service.Set(); - if (configuration.IsAntiAntiDebugEnabled) - antiDebug.Enable(); -#if DEBUG if (!antiDebug.IsEnabled) + { +#if DEBUG antiDebug.Enable(); +#else + if (configuration.IsAntiAntiDebugEnabled) + antiDebug.Enable(); #endif + } Log.Information("[T2] AntiDebug OK!"); Service.Set();