Skip to content

Commit

Permalink
Fix solids and ignition, set default propellant status
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Jun 26, 2015
1 parent bc1a767 commit 375a7ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Engines/ModuleEnginesRF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -356,14 +356,15 @@ public override void UpdateFlightCondition(EngineThermodynamics ambientTherm, do
// handle ignition
if (HighLogic.LoadedSceneIsFlight)
{
if (vessel.ctrlState.mainThrottle > 0f)
if (vessel.ctrlState.mainThrottle > 0f || throttleLocked)
throttledUp = true;
else
ignited = false;
IgnitionUpdate();

// Ullage
bool pressureOK = ullageSet.PressureOK();
propellantStatus = "Nominal";
if (ullage)
{
propellantStatus = ullageSet.GetUllageState();
Expand Down

0 comments on commit 375a7ea

Please sign in to comment.