We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c25b8 commit b356b44Copy full SHA for b356b44
Marlin/src/gcode/feature/pause/M701_M702.cpp
@@ -97,7 +97,7 @@ void GcodeSuite::M701() {
97
};
98
99
// Raise the Z axis (with max limit)
100
- const float park_raise = _MIN(0, park_point.z, (Z_MAX_POS) - current_position.z);
+ const float park_raise = _MIN(park_point.z, (Z_MAX_POS) - current_position.z);
101
move_z_by(park_raise);
102
103
// Load filament
0 commit comments