Skip to content

Commit b356b44

Browse files
authored
Fix Z raise in filament load M701 (#21762)
Fixes #21750
1 parent 05c25b8 commit b356b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/gcode/feature/pause/M701_M702.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void GcodeSuite::M701() {
9797
};
9898

9999
// Raise the Z axis (with max limit)
100-
const float park_raise = _MIN(0, park_point.z, (Z_MAX_POS) - current_position.z);
100+
const float park_raise = _MIN(park_point.z, (Z_MAX_POS) - current_position.z);
101101
move_z_by(park_raise);
102102

103103
// Load filament

0 commit comments

Comments
 (0)