From f52d3a48d92855201ecee8aac00f113c3a9213f7 Mon Sep 17 00:00:00 2001 From: DaddyCool13 <81956635+DaddyCool13@users.noreply.github.com> Date: Sat, 3 Jul 2021 18:59:47 +0200 Subject: [PATCH] Update ForScience.cs I would like to propose this change to bring the amount of gathered science to 100. Otherwise, in many cases it stops at 98% or 99% due to this page: http://bigorangemachine.github.io/ksp_js_career_sci_list/ --- Source/ForScience.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ForScience.cs b/Source/ForScience.cs index cf4dc7e..94111a3 100644 --- a/Source/ForScience.cs +++ b/Source/ForScience.cs @@ -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: "); @@ -243,4 +243,4 @@ List GetContainerList() // a list of all science contain else return GameDatabase.Instance.GetTexture("ForScience/Icons/FS_inactive", false); } } -} \ No newline at end of file +}