chore: remove defaults

This commit is contained in:
goaaats 2022-04-01 05:03:41 +02:00
parent 4aa32efd55
commit a7a4633f2e
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
2 changed files with 1 additions and 8 deletions

View file

@ -290,7 +290,7 @@ namespace Dalamud.Configuration.Internal
/// </summary>
public bool ShowTsm { get; set; } = true;
public bool? Fools22New { get; set; } = true;
public bool? Fools22New { get; set; } = false;
/// <summary>
/// Load a configuration from the provided path.

View file

@ -275,13 +275,6 @@ namespace Dalamud
try
{
Log.Information("Loading fools22");
var timeZone = TimeZoneInfo.Local;
var offset = timeZone.GetUtcOffset(DateTime.UtcNow);
var config = Service<DalamudConfiguration>.Get();
config.Fools22New ??= offset.Hours < 1;
config.Save();
this.fools22 = new Fools22();
}
catch (Exception ex)