Skip to content

Commit be29cc9

Browse files
committed
a little less sensitive please
1 parent 8cd2e59 commit be29cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Base.rte/AI/RocketAI.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function ThreadedUpdateAI(self)
206206
self.burstUp = nil;
207207
self.Ctrl:SetState(Controller.MOVE_UP, true); -- Don't burst when returning to orbit
208208
else
209-
if change < -1.5 and not self.burstUp then
209+
if change < -2.2 and not self.burstUp then
210210
self.burstUp = math.max(9 - change, 2); -- Wait n frames until next burst (lower -> better control)
211211
if change < -6 then
212212
self.Ctrl:SetState(Controller.MOVE_UP, true);

0 commit comments

Comments
 (0)