Save all settings to settings.yaml, not just non-defaults.
This commit is contained in:
@@ -134,16 +134,11 @@ namespace OpenRA.GameRules
|
|||||||
{
|
{
|
||||||
var root = new List<MiniYamlNode>();
|
var root = new List<MiniYamlNode>();
|
||||||
foreach( var kv in Sections )
|
foreach( var kv in Sections )
|
||||||
root.Add( new MiniYamlNode( kv.Key, SectionYaml( kv.Value ) ) );
|
root.Add( new MiniYamlNode( kv.Key, FieldSaver.Save(kv.Value) ) );
|
||||||
|
|
||||||
root.WriteToFile(SettingsFile);
|
root.WriteToFile(SettingsFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
MiniYaml SectionYaml(object section)
|
|
||||||
{
|
|
||||||
return FieldSaver.SaveDifferences(section, Activator.CreateInstance(section.GetType()));
|
|
||||||
}
|
|
||||||
|
|
||||||
void LoadSectionYaml(MiniYaml yaml, object section)
|
void LoadSectionYaml(MiniYaml yaml, object section)
|
||||||
{
|
{
|
||||||
object defaults = Activator.CreateInstance(section.GetType());
|
object defaults = Activator.CreateInstance(section.GetType());
|
||||||
|
|||||||
Reference in New Issue
Block a user