Parcourir la source

Fix singlenozzle toolchange cold extrusion test

Scott Lahteine il y a 6 ans
Parent
révision
d338e4d875
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/src/module/tool_change.cpp

+ 1
- 1
Marlin/src/module/tool_change.cpp Voir le fichier

@@ -648,7 +648,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
648 648
         #if ENABLED(SINGLENOZZLE)
649 649
 
650 650
           #if ENABLED(PREVENT_COLD_EXTRUSION)
651
-            if ((!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) || sn_settings.swap_length == 0) {
651
+            if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder) && sn_settings.swap_length) {
652 652
               SERIAL_ERROR_START();
653 653
               SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
654 654
               active_extruder = tmp_extruder;

Chargement…
Annuler
Enregistrer