Skip to content
Snippets Groups Projects
Commit b2c1cd7e authored by InsanityAutomation's avatar InsanityAutomation Committed by Scott Lahteine
Browse files

Allow cold change of active extruder (#12055)

Followup to #11994
parent d556dc18
No related branches found
No related tags found
No related merge requests found
......@@ -650,6 +650,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) {
SERIAL_ERROR_START();
SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
active_extruder = tmp_extruder;
return;
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment