Skip to content

Commit

Permalink
Update internal version
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Jun 26, 2023
1 parent 4970bde commit 9ca08ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Crew/CrewHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private static bool ComputeTrainingTypes()

[KSPField(isPersistant = true)]
public int LoadedSaveVersion = -1;
public const int VERSION = 2;
public const int VERSION = 3;

[KSPField(isPersistant = true)]
private PersistentDictionaryValueTypes<string, double> _retireTimes = new PersistentDictionaryValueTypes<string, double>();
Expand Down
2 changes: 1 addition & 1 deletion Source/KerbalConstructionTime/KCTGameStates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class KCTGameStates
private static readonly List<KSCItem> _EmptyKSCs = new List<KSCItem>();
public static List<KSCItem> KSCs => KerbalConstructionTimeData.Instance?.KSCs ?? _EmptyKSCs;

public const int VERSION = 2;
public const int VERSION = 3;

public static ToolbarControl ToolbarControl;

Expand Down

0 comments on commit 9ca08ec

Please sign in to comment.