diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-08 18:36:11 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-08 18:36:11 -0700 |
| commit | 4b5dd85a1fdcb1039c78261cab72047eb5a3933d (patch) | |
| tree | 94f8f4d1dabeceddd0558c3a5990eb401bd1b970 /Malmstone/Configuration.cs | |
| parent | 728d9ff38a19f0a8b72bcb004d56edabec138af8 (diff) | |
| parent | c434ed7e5b557ff82882d7ac74068169eb83de7c (diff) | |
Merge branch 'fl-bonus'
Diffstat (limited to 'Malmstone/Configuration.cs')
| -rw-r--r-- | Malmstone/Configuration.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Malmstone/Configuration.cs b/Malmstone/Configuration.cs index 1d0ed84..4f62a96 100644 --- a/Malmstone/Configuration.cs +++ b/Malmstone/Configuration.cs @@ -1,5 +1,4 @@ using Dalamud.Configuration; -using Dalamud.Plugin; using System; namespace Malmstone; @@ -18,6 +17,9 @@ public class Configuration : IPluginConfiguration public bool ShowMainWindowOnPVPReward { get; set; } = true; public bool SkipProgressionToastAfterGoal { get; set; } = false; public bool SkipProgressionChatAfterGoal { get; set; } = false; + public bool TrackFrontlineBonus { get; set; } = true; + public int SavedFrontlineRewardBonus { get; set; } = -1; + public bool OutdatedFrontlineRewardBonus { get; set; } = false; // the below exist just to make saving less cumbersome public void Save() |
