Skip to content

Commit

Permalink
Merge pull request #172 from BobPalmer/DEVELOP
Browse files Browse the repository at this point in the history
Emergency fix for log spam
  • Loading branch information
BobPalmer authored Nov 27, 2016
2 parents ac43aa8 + ffde8d4 commit 7d6e54e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.5.8 - 2016.11.27
------------------
Fixed an issue causing log spam

0.5.7 - 2016.11.27
------------------
Moved all functionality to a VesselModule in an attempt to better identify our heisenbug..
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"VERSION":{
"MAJOR":0,
"MINOR":5,
"PATCH":7,
"PATCH":8,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Source/USILifeSupport/.vs/USILifeSupport/v14/.suo
Binary file not shown.
3 changes: 3 additions & 0 deletions Source/USILifeSupport/ModuleLifeSupportSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public void OnDestroy()

public void FixedUpdate()
{
if (!vessel.loaded)
return;

if (!HighLogic.LoadedSceneIsFlight || vessel == null)
return;

Expand Down

0 comments on commit 7d6e54e

Please sign in to comment.