Skip to content

Commit

Permalink
Removed some debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxgurugamer committed Mar 17, 2020
1 parent c8fd32c commit 7b35ba0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog

1.16.0.4
Removed some debugging statements

1.16.0.3
Fixed issue with part variants where it wasn't changing the mass of the part variant, resulting in negative numbers on occasion

Expand Down
2 changes: 1 addition & 1 deletion GameData/KRnD/KRnD.version
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"MAJOR": 1,
"MINOR": 16,
"PATCH": 0,
"BUILD": 2
"BUILD": 4
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion KRnD.version
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"MAJOR": 1,
"MINOR": 16,
"PATCH": 0,
"BUILD": 3
"BUILD": 4
},
"KSP_VERSION_MIN": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion Source/AssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

using System.Reflection;

[assembly: AssemblyVersion("1.16.0.2")]
[assembly: AssemblyVersion("1.16.0.4")]
6 changes: 2 additions & 4 deletions Source/KRnDGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -804,9 +804,8 @@ private void OnWindow(int windowId)
new Exception("unexpected option '" + selectedUpgradeOption + "'");
break;
}
#if true
string newInfo = getPartInfo(part, currentUpgrade);
//String newInfo = getPartInfo(part, nextUpgrade); // Calculate part-info if the selected stat was upgraded.

String newInfo = getPartInfo(part, nextUpgrade); // Calculate part-info if the selected stat was upgraded.
newInfo = highlightChanges(currentInfo, newInfo);

// Current stats:
Expand Down Expand Up @@ -871,7 +870,6 @@ private void OnWindow(int windowId)
GUILayout.EndArea();
}
}
#endif

GUILayout.EndVertical();
GUI.DragWindow();
Expand Down

0 comments on commit 7b35ba0

Please sign in to comment.