|
@ -947,7 +947,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) { |
|
|
|
|
|
|
|
|
// Unload / Retract
|
|
|
// Unload / Retract
|
|
|
#if ENABLED(TOOLCHANGE_FILAMENT_SWAP) |
|
|
#if ENABLED(TOOLCHANGE_FILAMENT_SWAP) |
|
|
const bool should_swap = can_move_away && toolchange_settings.swap_length; |
|
|
const bool should_swap = can_move_away && toolchange_settings.swap_length, |
|
|
too_cold = TERN0(PREVENT_COLD_EXTRUSION, |
|
|
too_cold = TERN0(PREVENT_COLD_EXTRUSION, |
|
|
!DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool)) |
|
|
!DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool)) |
|
|
); |
|
|
); |
|
|