Skip to content

Commit

Permalink
Woops. Need to actually start a Coroutine
Browse files Browse the repository at this point in the history
  • Loading branch information
JPLRepo committed Mar 25, 2017
1 parent 0a6f4e5 commit 704e6db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GameData/ThunderAerospace/TacLifeSupport_v0.13.0.0.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
You have installed the TAC Life Support, version 0.13.0.0 ('41d6a35'+'41d6a35' with modifications).
You have installed the TAC Life Support, version 0.13.0.0 ('0a6f4e5'+'0a6f4e5' with modifications).

See the Readme.txt and LICENSE.txt files for more information.
4 changes: 2 additions & 2 deletions Source/LifeSupportController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void FixedUpdate()
int crewCapacity = UpdateVesselInfo(entry.Value, loadedvessel);
if (crewCapacity == 0)
{
checkDictionaries();
StartCoroutine(checkDictionaries());
continue;
}
//If vessel is PRELAUNCH
Expand Down Expand Up @@ -1272,7 +1272,7 @@ private void onLevelWasLoaded(GameScenes scene)
{
if (scene == GameScenes.FLIGHT && !checkedDictionaries)
{
checkDictionaries();
StartCoroutine(checkDictionaries());
}
}

Expand Down

0 comments on commit 704e6db

Please sign in to comment.