Skip to content

Commit

Permalink
Update version checks for KSP 0.90.
Browse files Browse the repository at this point in the history
  • Loading branch information
taniwha committed Jan 18, 2015
1 parent 0370bfb commit 87131c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Plugin/Kethane/Utilities/CompatibilityChecker.cs
Expand Up @@ -53,7 +53,7 @@ public static bool IsCompatible()
\*-----------------------------------------------*/

const int compatibleMajor = 0;
const int compatibleMinor = 25;
const int compatibleMinor = 90;
const int compatibleRevision = 0;

return (Versioning.version_major == compatibleMajor) && (Versioning.version_minor == compatibleMinor) && (Versioning.Revision == compatibleRevision);
Expand All @@ -69,7 +69,7 @@ public static bool IsUnityCompatible()
| BEGIN IMPLEMENTATION-SPECIFIC EDITS HERE. |
\*-----------------------------------------------*/

return Application.unityVersion == "4.5.2f1";
return Application.unityVersion == "4.5.5f1";

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

0 comments on commit 87131c7

Please sign in to comment.