Skip to content

Commit

Permalink
Update check for KSP 1.12
Browse files Browse the repository at this point in the history
I haven't tested 1.11, but if it works for 1.9 (and 1.8 was tested for
me back in December) 1.10, and 1.12, then surely 1.11 is good, too :P
  • Loading branch information
taniwha committed Aug 23, 2021
1 parent 6a03c7e commit 08ae570
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Source/assembly/Checkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@ public static bool IsCompatible()
// can expect a future update to be available.
//
if (Versioning.version_major == 1
&& (Versioning.version_minor == 8
|| Versioning.version_minor == 9
|| Versioning.version_minor == 10)) {
&& (Versioning.version_minor >= 8
|| Versioning.version_minor <= 12)) {
//return Versioning.Revision == 1;
return true;
}
Expand Down

0 comments on commit 08ae570

Please sign in to comment.