diff options
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index e1f2ddc9..f23f2bc3 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -306,7 +306,8 @@ class ToolHead: move.start_v, move.cruise_v, move.accel) if move.axes_d[3]: self.extruder.move(next_move_time, move) - next_move_time += move.accel_t + move.cruise_t + move.decel_t + next_move_time = (next_move_time + move.accel_t + + move.cruise_t + move.decel_t) # Generate steps for moves if self.special_queuing_state == "Drip": self._update_drip_move_time(next_move_time) |