diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-03 17:10:41 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-03 17:31:28 -0700 |
| commit | d5be3a7bc1c4176a9348f81f9677f14ed0b49676 (patch) | |
| tree | 2a0431a7a4d87139061748fbae51f89f9544d24f /Malmstone/Configuration.cs | |
| parent | 48122c50492b8c4d8acecee903868b226cc30293 (diff) | |
| parent | 04b359033329d4bcd21b574e601601ffff135ff5 (diff) | |
Merge branch 'postmatch'
Add post match toast and chat messages
Diffstat (limited to 'Malmstone/Configuration.cs')
| -rw-r--r-- | Malmstone/Configuration.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Malmstone/Configuration.cs b/Malmstone/Configuration.cs index e0d5a3c..ce87dfd 100644 --- a/Malmstone/Configuration.cs +++ b/Malmstone/Configuration.cs @@ -10,6 +10,11 @@ public class Configuration : IPluginConfiguration public int Version { get; set; } = 0; public int DefaultTargetRankProperty { get; set; } = 1; + public int PostmatchProgressionToastType { get; set; } = 0; // 0 = normal, 1=quest, 2=error + public bool ShowProgressionToastPostMatch { get; set; } = true; + public bool ShowProgressionChatPostRW { get; set; } = true; + public bool ShowProgressionChatPostCC { get; set; } = true; + public bool ShowProgressionChatPostFL { get; set; } = true; // the below exist just to make saving less cumbersome public void Save() |
