Users now need to re-accept the TOS if they only accepted an old version.

This commit is contained in:
Eauldane
2025-08-29 20:47:00 +01:00
parent ac231ef800
commit ed4630cd51
3 changed files with 8 additions and 5 deletions

View File

@@ -7,6 +7,8 @@ namespace MareSynchronos.MareConfiguration.Configurations;
[Serializable]
public class MareConfig : IMareConfiguration
{
public int ExpectedTOSVersion = 1;
public int AcceptedTOSVersion { get; set; } = 0;
public bool AcceptedAgreement { get; set; } = false;
public string CacheFolder { get; set; } = string.Empty;
public bool DisableOptionalPluginWarnings { get; set; } = false;