diff --git a/src/kOS/Control/SteeringManager.cs b/src/kOS/Control/SteeringManager.cs index 10dfd63fe..3938b6200 100644 --- a/src/kOS/Control/SteeringManager.cs +++ b/src/kOS/Control/SteeringManager.cs @@ -368,9 +368,9 @@ public void InitializeSuffixes() AddSuffix("ROLLTORQUEFACTOR", new SetSuffix(() => RollTorqueFactor, value => RollTorqueFactor = value)); AddSuffix("AVERAGEDURATION", new Suffix(() => AverageDuration.Mean)); AddSuffix("ROLLCONTROLANGLERANGE", new SetSuffix(() => RollControlAngleRange, value => RollControlAngleRange = value)); + AddSuffix("ACTUATION", new Suffix(() => new Vector(accPitch, accRoll, accYaw))); #if DEBUG AddSuffix("MOI", new Suffix(() => new Vector(momentOfInertia))); - AddSuffix("ACTUATION", new Suffix(() => new Vector(accPitch, accRoll, accYaw))); AddSuffix("CONTROLTORQUE", new Suffix(() => new Vector(controlTorque))); AddSuffix("MEASUREDTORQUE", new Suffix(() => new Vector(measuredTorque))); AddSuffix("RAWTORQUE", new Suffix(GetRawTorque)); @@ -1567,4 +1567,4 @@ Vessel IFlightControlParameter.GetResponsibleVessel() return shared.Vessel; } } -} \ No newline at end of file +}