diff options
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index 806da7bf..2dde8491 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -350,7 +350,7 @@ class ToolHead: move.axes_r[0], move.axes_r[1], move.axes_r[2], move.start_v, move.cruise_v, move.accel) if move.axes_d[3]: - self.extruder.move(next_move_time, move) + self.extruder.process_move(next_move_time, move) next_move_time = (next_move_time + move.accel_t + move.cruise_t + move.decel_t) for cb in move.timing_callbacks: |