diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-16 15:52:31 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-16 15:52:31 -0700 |
| commit | 481ec3932c98771310cf9d834ebad8446b01f5c4 (patch) | |
| tree | 8beebe68b589607c2689086152174233cec16b85 /Malmstone/Configuration.cs | |
| parent | f49522524dd8235869086cf8ed88dc49f50ef5f1 (diff) | |
initial implementation of tracking claimed Series Level above 30
Diffstat (limited to 'Malmstone/Configuration.cs')
| -rw-r--r-- | Malmstone/Configuration.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Malmstone/Configuration.cs b/Malmstone/Configuration.cs index 239f1b1..bd4de22 100644 --- a/Malmstone/Configuration.cs +++ b/Malmstone/Configuration.cs @@ -1,5 +1,6 @@ using Dalamud.Configuration; using System; +using System.Collections.Generic; namespace Malmstone; @@ -22,6 +23,7 @@ public class Configuration : IPluginConfiguration public bool OutdatedFrontlineRewardBonus { get; set; } = false; public bool IsPrimedForBuff { get; set; } = false; public bool OverrideShowMatchesToDefaultTargetGoal { get; set; } = false; + public Dictionary<ulong, int> ExtraLevelsMap { get; set; } = new Dictionary<ulong, int>(); // the below exist just to make saving less cumbersome public void Save() |
