From 481ec3932c98771310cf9d834ebad8446b01f5c4 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 16 Sep 2024 15:52:31 -0700 Subject: initial implementation of tracking claimed Series Level above 30 --- Malmstone/Configuration.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Malmstone/Configuration.cs') 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 ExtraLevelsMap { get; set; } = new Dictionary(); // the below exist just to make saving less cumbersome public void Save() -- cgit v1.2.3