Patch tool_change typo

This commit is contained in:
Scott Lahteine 2020-04-23 16:19:51 -05:00
parent 69f211cf78
commit 44b71103df

View file

@ -947,7 +947,7 @@ void tool_change(const uint8_t new_tool, bool no_move/*=false*/) {
// Unload / Retract
#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,
!DEBUGGING(DRYRUN) && (thermalManager.targetTooColdToExtrude(old_tool) || thermalManager.targetTooColdToExtrude(new_tool))
);