Skip to content

Commit

Permalink
Firing up an FATAL when using 1.4.3 <= KSP < 1.9.0 without KSP-Recall…
Browse files Browse the repository at this point in the history
…. This thing is needed now.

For #261
  • Loading branch information
Lisias committed Nov 12, 2022
1 parent 74ee13b commit 97f54f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Scale/Startup.cs
Expand Up @@ -78,7 +78,7 @@ internal class Startup : MonoBehaviour
KSPe.Util.Compatibility.Check<Startup>(typeof(Version), typeof(Configuration));
KSPe.Util.Installation.Check<Startup>("Scale", "TweakScale", null, true);

if (KSPe.Util.KSP.Version.Current >= KSPe.Util.KSP.Version.FindByVersion(1, 9, 0))
if (KSPe.Util.KSP.Version.Current >= KSPe.Util.KSP.Version.FindByVersion(1, 4, 3))
{
Type calledType = Type.GetType("KSP_Recall.Version, KSP-Recall", false, false);
if (null == calledType)
Expand Down

0 comments on commit 97f54f3

Please sign in to comment.