From d715d1336f194e454967a793f8778480e9fa8c58 Mon Sep 17 00:00:00 2001 From: p-i-engineer Date: Tue, 27 Dec 2022 16:30:39 -0800 Subject: [PATCH] probe-preheat-fix --- Marlin/src/module/probe.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Marlin/src/module/probe.cpp b/Marlin/src/module/probe.cpp index 1f579add37..0de3561ca7 100644 --- a/Marlin/src/module/probe.cpp +++ b/Marlin/src/module/probe.cpp @@ -370,10 +370,6 @@ FORCE_INLINE void probe_specific_action(const bool deploy) { DEBUG_ECHOPGM("hotend (", hotendPreheat, ")"); thermalManager.setTargetHotend(hotendPreheat, 0); } - else if(hotendPreheat==0 && IS_SD_PRINTING()==0) - { - thermalManager.setTargetHotend(LEVELING_NOZZLE_TEMP, 0); - } #elif ENABLED(WAIT_FOR_BED_HEAT) constexpr celsius_t hotendPreheat = 0; #endif @@ -385,10 +381,6 @@ FORCE_INLINE void probe_specific_action(const bool deploy) { DEBUG_ECHOPGM("bed (", bedPreheat, ")"); thermalManager.setTargetBed(bedPreheat); } - else if(bedPreheat == 0 && IS_SD_PRINTING()==0) - { - thermalManager.setTargetBed(LEVELING_BED_TEMP); - } #endif DEBUG_EOL();