From c80855dc2f4d923e2a435177d39a4a316a52f53d Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Mon, 29 Jun 2026 21:02:07 -0500 Subject: [PATCH] continued from last commit --- main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.lua b/main.lua index abdc486..1f9a3bd 100644 --- a/main.lua +++ b/main.lua @@ -864,10 +864,10 @@ function UpdateGlobalThrust() -- Calculate desired thrust based on affectVectors and PID outputs if thruster.affectVectors.angular.pitch ~= nil and thruster.primary_pitch_thruster then - desiredThrust = desiredThrust + pitchOutput + pitchRateOutput + desiredThrust = desiredThrust + pitchOutput end if thruster.affectVectors.angular.roll ~= nil and thruster.primary_roll_thruster then - desiredThrust = desiredThrust + rollOutput + rollRateOutput + desiredThrust = desiredThrust + rollOutput end if thruster.affectVectors.angular.yaw ~= nil and thruster.primary_yaw_thruster then desiredThrust = desiredThrust + yawRateOutput