Skip to content

Commit

Permalink
Fix KSCSwitcher patch using improper KSC name
Browse files Browse the repository at this point in the history
  • Loading branch information
siimav committed Jul 2, 2024
1 parent cb960f8 commit 9ab5955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RP0/Harmony/KSCSwitcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal static void Postfix_SetSite(ConfigNode KSC, bool __result)
{
if (__result && SpaceCenterManagement.Instance != null)
{
SpaceCenterManagement.Instance.SetActiveKSC(KSC.name);
SpaceCenterManagement.Instance.SetActiveKSC(KSC.GetValue("name"));
}
}
}
Expand Down

0 comments on commit 9ab5955

Please sign in to comment.