add debug statement to SetThrusterPower

This commit is contained in:
2026-06-29 21:46:22 -05:00
parent 406cc966ec
commit 91c1723a9e

View File

@@ -827,6 +827,8 @@ function SetThrusterPower(thruster, power)
thruster.power = power thruster.power = power
thruster.thruster.setPowerNormalized(power) thruster.thruster.setPowerNormalized(power)
end end
if Config.Debug then print("DEBUG: thruster "..thruster.name..": power "..power) end
end end
function GetThrusterPower(thruster) function GetThrusterPower(thruster)