Add previously missing change in config class
This commit is contained in:
parent
71b40496fb
commit
fe1d86bf5b
@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using Dalamud.Configuration;
|
using Dalamud.Configuration;
|
||||||
using Dalamud.Game.Text;
|
using Dalamud.Game.Text;
|
||||||
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
||||||
@ -45,7 +46,10 @@ internal sealed class Configuration : IPluginConfiguration
|
|||||||
internal sealed class SinglePlayerDutyConfiguration
|
internal sealed class SinglePlayerDutyConfiguration
|
||||||
{
|
{
|
||||||
public bool RunSoloInstancesWithBossMod { get; set; }
|
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<uint> WhitelistedSinglePlayerDutyCfcIds { get; set; } = [];
|
public HashSet<uint> WhitelistedSinglePlayerDutyCfcIds { get; set; } = [];
|
||||||
public HashSet<uint> BlacklistedSinglePlayerDutyCfcIds { get; set; } = [];
|
public HashSet<uint> BlacklistedSinglePlayerDutyCfcIds { get; set; } = [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user