Skip to content
This repository has been archived by the owner on Oct 26, 2020. It is now read-only.

Commit

Permalink
Fix #119.
Browse files Browse the repository at this point in the history
  • Loading branch information
magico13 committed Aug 24, 2017
1 parent a9c5ea1 commit 930d6ef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Kerbal_Construction_Time/KCT_GUI_Presets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,12 @@ public static void DrawPresetWindow(int windowID)
for (int j = 0; j < KCT_GameStates.TechList.Count; j++)
KCT_GameStates.TechList[j].UpdateBuildRate(j);

foreach (KCT_KSC ksc in KCT_GameStates.KSCs)
{
ksc.RecalculateBuildRates();
ksc.RecalculateUpgradedBuildRates();
}

KCT_GUI.ResetFormulaRateHolders();
}
if (GUILayout.Button("Cancel", GUILayout.ExpandWidth(false)))
Expand Down

0 comments on commit 930d6ef

Please sign in to comment.