Skip to content

Commit

Permalink
Fix finding LP state using wrong name to compare vs recon/rollout. Close
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Jun 26, 2023
1 parent 5eca018 commit 1b1263c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/KerbalConstructionTime/Persistence/KCT_LaunchPad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public LaunchPadState State

foreach (var rr in LC.Recon_Rollout)
{
if (rr.launchPadID == launchSiteName)
if (rr.launchPadID == name)
{
switch (rr.RRType)
{
Expand Down

0 comments on commit 1b1263c

Please sign in to comment.