hopefully fix SetThrusterPower for rotators with analog transmissions
This commit is contained in:
4
main.lua
4
main.lua
@@ -788,7 +788,7 @@ function SetThrusterPower(thruster, power)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if Config.Debug then print("DEBUG: thruster "..thruster.name..": power "..power) end
|
if Config.Debug then print("DEBUG: thruster "..thruster.name..": power "..power) end
|
||||||
|
|
||||||
if thruster.type == "rotator" then
|
if thruster.type == "rotator" then
|
||||||
thruster.power = power
|
thruster.power = power
|
||||||
local actualPower = 0
|
local actualPower = 0
|
||||||
@@ -818,7 +818,7 @@ function SetThrusterPower(thruster, power)
|
|||||||
if actualPower < 1 then
|
if actualPower < 1 then
|
||||||
actualPower = 15 -- signal 15 will decouple the speed and stop the motion
|
actualPower = 15 -- signal 15 will decouple the speed and stop the motion
|
||||||
end
|
end
|
||||||
if actualPower <= 15 then
|
if actualPower <= 15 and actualPower > 1 then
|
||||||
actualPower = actualPower - 1
|
actualPower = actualPower - 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user