Skip to content

Commit

Permalink
Merge pull request #117 from BobPalmer/DEVELOP
Browse files Browse the repository at this point in the history
Fixed a missing guard clause
  • Loading branch information
BobPalmer committed May 15, 2016
2 parents 862d950 + c015e7d commit 9ba8263
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.4.3.1 - 2016.05.15
--------------------
Guard clauses are important.

0.4.3 - 2016.05.14
------------------
Dependency Updates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"MAJOR":0,
"MINOR":4,
"PATCH":3,
"BUILD":0
"BUILD":1
},
"KSP_VERSION":{
"MAJOR":1,
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions Source/USILifeSupport/LifeSupportPersistance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ public void Save(ConfigNode node)
SettingsNode = node.AddNode("LIFE_SUPPORT_SETTINGS");
}

if (_Settings == null)
_Settings = LoadLifeSupportConfig();

foreach (LifeSupportStatus r in _StatusInfo)
{
var rNode = new ConfigNode("STATUS_DATA");
Expand Down

0 comments on commit 9ba8263

Please sign in to comment.