|
@@ -1132,7 +1132,8 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
|
1132
|
1132
|
#if ENABLED(TOOLCHANGE_PARK)
|
1133
|
1133
|
if (toolchange_settings.enable_park) do_blocking_move_to_xy_z(destination, destination.z, MMM_TO_MMS(TOOLCHANGE_PARK_XY_FEEDRATE));
|
1134
|
1134
|
#else
|
1135
|
|
- do_blocking_move_to_xy(destination);
|
|
1135
|
+ do_blocking_move_to_xy(destination, planner.settings.max_feedrate_mm_s[X_AXIS]);
|
|
1136
|
+ do_blocking_move_to_z(destination, planner.settings.max_feedrate_mm_s[Z_AXIS]);
|
1136
|
1137
|
#endif
|
1137
|
1138
|
|
1138
|
1139
|
#endif
|