Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Source/ForScience.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void TransferScience() // automaticlly find, transer and consolidate science dat
Debug.Log("[ForScience!] Skipping: Experiment is not available for this situation/atmosphere.");

}
else if (CurrentScienceValue(currentExperiment) < 0.1) // this experiment has no more value so we skip it
else if (CurrentScienceValue(currentExperiment) < 0.01) // this experiment has no more value so we skip it
{

Debug.Log("[ForScience!] Skipping: No more science is available: ");
Expand Down Expand Up @@ -243,4 +243,4 @@ List<ModuleScienceContainer> GetContainerList() // a list of all science contain
else return GameDatabase.Instance.GetTexture("ForScience/Icons/FS_inactive", false);
}
}
}
}