Skip to content
This repository has been archived by the owner on Jun 24, 2019. It is now read-only.

Commit

Permalink
Update for KSP 0.90.
Browse files Browse the repository at this point in the history
I doubt my changes to the scene filter are ideal, but I don't care.
  • Loading branch information
taniwha committed Dec 16, 2014
1 parent d23de93 commit 8958038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Utils/KSPUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public enum GameSceneFilter
MainMenu = 1 << GameScenes.MAINMENU,
SpaceCenter = 1 << GameScenes.SPACECENTER,
VAB = 1 << GameScenes.EDITOR,
SPH = 1 << GameScenes.SPH,
SPH = 1 << GameScenes.EDITOR,
Flight = 1 << GameScenes.FLIGHT,
TrackingStation = 1 << GameScenes.TRACKSTATION,
Settings = 1 << GameScenes.SETTINGS,
Expand Down
2 changes: 1 addition & 1 deletion Source/zzVersionChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static bool IsCompatible()
// Even if you don't lock down functionality, you should return true if your users
// can expect a future update to be available.
//
return Versioning.version_major == 0 && Versioning.version_minor == 25 && Versioning.Revision == 0;
return Versioning.version_major == 0 && Versioning.version_minor == 90 && Versioning.Revision == 0;

/*-----------------------------------------------*\
| IMPLEMENTERS SHOULD NOT EDIT BEYOND THIS POINT! |
Expand Down

0 comments on commit 8958038

Please sign in to comment.