Skip to content

Commit 9f6cafb

Browse files
committed
🩹 Fix Nozzle Cleaning wait for pre-set temp
Fixes #27882
1 parent 8c6e952 commit 9f6cafb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/libs/nozzle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ Nozzle nozzle;
189189
#if ENABLED(NOZZLE_CLEAN_HEATUP)
190190
SERIAL_ECHOLNPGM("Nozzle too Cold - Heating");
191191
thermalManager.setTargetHotend(NOZZLE_CLEAN_MIN_TEMP, arrPos);
192-
thermalManager.wait_for_hotend(arrPos);
193192
#else
194193
SERIAL_ECHOLNPGM("Nozzle too cold - Skipping wipe");
195194
return;
196195
#endif
197196
}
197+
thermalManager.wait_for_hotend(arrPos);
198198
#endif
199199

200200
#if HAS_SOFTWARE_ENDSTOPS

0 commit comments

Comments
 (0)