Skip to content

Commit

Permalink
Just say no to curves
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Nov 16, 2015
1 parent 5629baf commit fd79b26
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Binary file modified GameData/AJE/Plugins/AJE.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/AJEJet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public override void CreateEngine()
exhaustMixer,
adjustableNozzle
);
useAtmCurve = atmChangeFlow = useVelCurve = false;
useAtmCurve = atmChangeFlow = useVelCurve = useAtmCurveIsp = useVelCurveIsp = false;
maxEngineTemp = maxT3;
if (autoignitionTemp < 0f || float.IsInfinity(autoignitionTemp))
autoignitionTemp = 500f; // Autoignition of Kerosene is 493.15K
Expand Down
2 changes: 2 additions & 0 deletions Source/AJEPropeller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ public override void CreateEngine()
Fields["netMeredithEffect"].guiActive = false;

Fields["statusL2"].guiActive = true; // always show

useAtmCurve = atmChangeFlow = useVelCurve = useAtmCurveIsp = useVelCurveIsp = false;
}

public override void OnStart(StartState state)
Expand Down
2 changes: 1 addition & 1 deletion Source/AJERotor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public override void CreateEngine()
sasY = sas.YawTorque;
sasR = sas.RollTorque;

useAtmCurve = atmChangeFlow = useVelCurve = false;
useAtmCurve = atmChangeFlow = useVelCurve = useAtmCurveIsp = useVelCurveIsp = false;
}

#endregion
Expand Down

0 comments on commit fd79b26

Please sign in to comment.