Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MechJeb2/MechJebModuleCustomInfoWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public override void OnLoad(ConfigNode local, ConfigNode type, ConfigNode global
// an earlier non-saving pass would otherwise suppress the regen in the pass that saves.
// Decide staleness from the key's presence on disk so we keep regenerating until the
// bumped version is actually persisted.
if (!global.HasValue("customWindowsVersion") || CustomWindowsVersion < CUSTOM_WINDOWS_VERSION)
if (!global.HasValue("CustomWindowsVersion") || CustomWindowsVersion < CUSTOM_WINDOWS_VERSION)
{
CustomWindowsVersion = CUSTOM_WINDOWS_VERSION;
RegenerateDefaultWindows = true;
Expand Down
Loading