🩹 Fix Nozzle Cleaning wait for pre-set temp

Fixes #27882
This commit is contained in:
Scott Lahteine 2025-06-01 20:47:35 -05:00
parent 8c6e9526b0
commit 9f6cafbae3

View file

@ -189,12 +189,12 @@ Nozzle nozzle;
#if ENABLED(NOZZLE_CLEAN_HEATUP) #if ENABLED(NOZZLE_CLEAN_HEATUP)
SERIAL_ECHOLNPGM("Nozzle too Cold - Heating"); SERIAL_ECHOLNPGM("Nozzle too Cold - Heating");
thermalManager.setTargetHotend(NOZZLE_CLEAN_MIN_TEMP, arrPos); thermalManager.setTargetHotend(NOZZLE_CLEAN_MIN_TEMP, arrPos);
thermalManager.wait_for_hotend(arrPos);
#else #else
SERIAL_ECHOLNPGM("Nozzle too cold - Skipping wipe"); SERIAL_ECHOLNPGM("Nozzle too cold - Skipping wipe");
return; return;
#endif #endif
} }
thermalManager.wait_for_hotend(arrPos);
#endif #endif
#if HAS_SOFTWARE_ENDSTOPS #if HAS_SOFTWARE_ENDSTOPS