diff options
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() |
