Browse Source

Allow cold change of active extruder (#12055)

Followup to #11994
InsanityAutomation 6 years ago
parent
commit
b2c1cd7eda
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      Marlin/src/module/tool_change.cpp

+ 1
- 0
Marlin/src/module/tool_change.cpp View File

@@ -650,6 +650,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
650 650
             if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) {
651 651
               SERIAL_ERROR_START();
652 652
               SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
653
+              active_extruder = tmp_extruder;
653 654
               return;
654 655
             }
655 656
           #endif

Loading…
Cancel
Save