Skip to content

Commit

Permalink
Re-enable the reload contracts button.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrossignol committed Sep 20, 2020
1 parent f3cbccc commit ee6112a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Contract Configurator 1.30.3
- Deployed Science from Breaking Ground no longer generates tons of message spam. Instead, the messages (including screen messages) are intercepted and combined into a single more useful message.
- Re-enable the reload contracts button (may or may not work).
- Fixed issue where invertRequirement was no longer allowed for Any (and All) REQUIREMENT nodes (thanks Morphisor).
- Made Asteroid and Comet science into Sun-only science to prevent them from showing up in weird (but valid according to the game) scenarios. Prevents contracts for things like "comet sample while landed on Kerbin" (thanks Lathari).
- Cleaned up some duplicated name in the contract type selection settings window (thanks gamerscircle).
Expand Down
4 changes: 2 additions & 2 deletions source/ContractConfigurator/Util/DebugWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ private static void WindowGUI(int windowID)
ContractConfigurator.successContracts == ContractConfigurator.totalContracts ? greenLabel : redLabel);

GUILayout.BeginHorizontal();
if (GUILayout.Button("Reload Contracts (BROKEN)"))
if (GUILayout.Button("Reload Contracts"))
{
//ContractConfigurator.StartReload();
ContractConfigurator.StartReload();
}
if (HighLogic.LoadedScene != GameScenes.MAINMENU)
{
Expand Down

0 comments on commit ee6112a

Please sign in to comment.