diff --git a/GameData/SystemHeat/Plugin/SystemHeat.dll b/GameData/SystemHeat/Plugin/SystemHeat.dll index fe2e728..ecdb779 100644 Binary files a/GameData/SystemHeat/Plugin/SystemHeat.dll and b/GameData/SystemHeat/Plugin/SystemHeat.dll differ diff --git a/GameData/SystemHeat/Versioning/SystemHeat.version b/GameData/SystemHeat/Versioning/SystemHeat.version index a241106..3a0e6a8 100644 --- a/GameData/SystemHeat/Versioning/SystemHeat.version +++ b/GameData/SystemHeat/Versioning/SystemHeat.version @@ -6,7 +6,7 @@ { "MAJOR":0, "MINOR":8, - "PATCH":1, + "PATCH":2, "BUILD":0 }, "KSP_VERSION": diff --git a/SystemHeat/SystemHeat/SystemHeatSimulator.cs b/SystemHeat/SystemHeat/SystemHeatSimulator.cs index 9793399..2d4a469 100644 --- a/SystemHeat/SystemHeat/SystemHeatSimulator.cs +++ b/SystemHeat/SystemHeat/SystemHeatSimulator.cs @@ -260,7 +260,6 @@ public HeatLoop Loop(int id) { return HeatLoops.Find(x => x.ID == id); } - Utils.Log("nah loop"); return null; } public void ResetTemperatures() diff --git a/SystemHeat/SystemHeat/UI/ReactorUI/ReactorWidget.cs b/SystemHeat/SystemHeat/UI/ReactorUI/ReactorWidget.cs index 6ff94ef..e184689 100644 --- a/SystemHeat/SystemHeat/UI/ReactorUI/ReactorWidget.cs +++ b/SystemHeat/SystemHeat/UI/ReactorUI/ReactorWidget.cs @@ -212,7 +212,6 @@ protected void Update() bool.TryParse(module.Fields.GetValue("Enabled").ToString(), out bool isOn); if (isOn != onToggle.isOn) { - Debug.Log($"State forced to {isOn}"); onToggle.SetIsOnWithoutNotify(isOn); } @@ -256,7 +255,6 @@ protected void Update() bool.TryParse(module.Fields.GetValue("Enabled").ToString(), out bool isOn); if (isOn != onToggle.isOn) { - Debug.Log($"State forced to {isOn}"); onToggle.SetIsOnWithoutNotify(isOn); } diff --git a/changelog.txt b/changelog.txt index f7528bd..de6a8b9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +v0.8.2 +------ +- Fixed ungated debug loop strings + v0.8.1 ------ - Fixed an issue which would cause the heat loop animation in the overlay not to play if there was a loop with only negative fluxes (#125) diff --git a/readme.txt b/readme.txt index 6cc4273..04f3ce5 100644 --- a/readme.txt +++ b/readme.txt @@ -1,5 +1,5 @@ ================ -SystemHeat 0.8.1 +SystemHeat 0.8.2 ================ A mod for Kerbal Space Program, intended to provide a better experience for heat management, particularly geared towards resource extraction, high energy engines, and nuclear reactors.