diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-08 16:52:23 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-08 16:52:23 -0700 |
| commit | 031440201d24531d6a1d5a0e93579d76e1e4ba18 (patch) | |
| tree | 10e1651741457a0a0e16b28122ec24ab851aa87d /Malmstone/Configuration.cs | |
| parent | 3a3a6613cd9783f421df0a152c8675a669910557 (diff) | |
add saving functionality to frontline reward bonus
- marks as outdated if FrontlineRecord listener is disabled at any point
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 c4d091b..4f62a96 100644 --- a/Malmstone/Configuration.cs +++ b/Malmstone/Configuration.cs @@ -17,7 +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; } = 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() |
