Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bfd6c8a50955
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c35d3b596039
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Aug 17, 2019

  1. Fix #2257.

    eggrobin committed Aug 17, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cdf478c View commit details

Commits on Aug 18, 2019

  1. Merge pull request #2289 from eggrobin/2257

    Remove an obsolete condition
    eggrobin authored Aug 18, 2019
    Copy the full SHA
    c35d3b5 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 ksp_plugin_adapter/ksp_plugin_adapter.cs
2 changes: 1 addition & 1 deletion ksp_plugin_adapter/ksp_plugin_adapter.cs
Original file line number Diff line number Diff line change
@@ -827,7 +827,7 @@ private void FixedUpdate() {
Log.Info("Setting GameSettings.ORBIT_WARP_DOWN_AT_SOI to false");
GameSettings.ORBIT_WARP_DOWN_AT_SOI = false;
}
if (must_set_plotting_frame_ && FlightGlobals.currentMainBody != null) {
if (must_set_plotting_frame_) {
must_set_plotting_frame_ = false;
plotting_frame_selector_.UpdateMainBody();
previous_display_mode_ = null;