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: 3cad2b6964e1
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 386bdbbb9843
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 15, 2021

  1. Copy the full SHA
    bc4fb30 View commit details
  2. Merge pull request #2987 from pleroy/Unfaithful

    A packed vessel is not unfaithful
    pleroy authored May 15, 2021
    Copy the full SHA
    386bdbb View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 ksp_plugin_adapter/ksp_plugin_adapter.cs
3 changes: 2 additions & 1 deletion ksp_plugin_adapter/ksp_plugin_adapter.cs
Original file line number Diff line number Diff line change
@@ -574,7 +574,8 @@ private string UnmanageabilityReasons(Vessel vessel) {
if (vessel.loaded && hack_gravity?.toggle.isOn == true) {
reasons.Add("vessel is loaded and gravity is being hacked");
}
if (vessel.parts.All(part => !PartIsFaithful(part))) {
if (!vessel.packed &&
vessel.parts.All(part => !PartIsFaithful(part))) {
reasons.Add("vessel is completely unfaithful");
}
if (reasons.Count == 0) {