Disable forcing IgnoreLastSession true

This commit is contained in:
John Gross
2019-11-29 15:58:44 -08:00
parent 5727e3b1b8
commit 23b0318591

View File

@@ -29,7 +29,7 @@ namespace Torch.Server.ViewModels
public ConfigDedicatedViewModel(MyConfigDedicated<MyObjectBuilder_SessionSettings> configDedicated)
{
_config = configDedicated;
_config.IgnoreLastSession = true;
//_config.IgnoreLastSession = true;
SessionSettings = new SessionSettingsViewModel(_config.SessionSettings);
Task.Run(() => UpdateAllModInfosAsync());
}
@@ -40,7 +40,7 @@ namespace Torch.Server.ViewModels
_config.SessionSettings = _sessionSettings;
// Never ever
_config.IgnoreLastSession = true;
//_config.IgnoreLastSession = true;
_config.Save(path);
}