From 9f6cafbae3a38d1432f8ed68fa27501012e57230 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 1 Jun 2025 20:47:35 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20Nozzle=20Cleaning=20wait?= =?UTF-8?q?=20for=20pre-set=20temp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #27882 --- Marlin/src/libs/nozzle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/libs/nozzle.cpp b/Marlin/src/libs/nozzle.cpp index 3b982718a2..ad77e1e0ae 100644 --- a/Marlin/src/libs/nozzle.cpp +++ b/Marlin/src/libs/nozzle.cpp @@ -189,12 +189,12 @@ Nozzle nozzle; #if ENABLED(NOZZLE_CLEAN_HEATUP) SERIAL_ECHOLNPGM("Nozzle too Cold - Heating"); thermalManager.setTargetHotend(NOZZLE_CLEAN_MIN_TEMP, arrPos); - thermalManager.wait_for_hotend(arrPos); #else SERIAL_ECHOLNPGM("Nozzle too cold - Skipping wipe"); return; #endif } + thermalManager.wait_for_hotend(arrPos); #endif #if HAS_SOFTWARE_ENDSTOPS