From fe1d86bf5b0d6a7e722651e84ecc26f47e84f8a6 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 22 Feb 2025 23:11:28 +0100 Subject: [PATCH] Add previously missing change in config class --- Questionable/Configuration.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Questionable/Configuration.cs b/Questionable/Configuration.cs index 07b20f4d..4a13462e 100644 --- a/Questionable/Configuration.cs +++ b/Questionable/Configuration.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using Dalamud.Configuration; using Dalamud.Game.Text; using FFXIVClientStructs.FFXIV.Client.UI.Agent; @@ -45,7 +46,10 @@ internal sealed class Configuration : IPluginConfiguration internal sealed class SinglePlayerDutyConfiguration { public bool RunSoloInstancesWithBossMod { get; set; } - public byte RetryDifficulty { get; set; } = 2; + + [SuppressMessage("Performance", "CA1822", Justification = "Will be fixed when no longer WIP")] + public byte RetryDifficulty => 0; + public HashSet WhitelistedSinglePlayerDutyCfcIds { get; set; } = []; public HashSet BlacklistedSinglePlayerDutyCfcIds { get; set; } = []; }