We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4080033 commit 50117f7Copy full SHA for 50117f7
Marlin/src/feature/hotend_idle.cpp
@@ -43,7 +43,7 @@ millis_t HotendIdleProtection::next_protect_ms = 0;
43
void HotendIdleProtection::check_hotends(const millis_t &ms) {
44
bool do_prot = false;
45
HOTEND_LOOP() {
46
- if (thermalManager.degHotendNear(e, HOTEND_IDLE_MIN_TRIGGER)) {
+ if (thermalManager.degHotend(active_extruder) >= HOTEND_IDLE_MIN_TRIGGER) {
47
do_prot = true; break;
48
}
49
0 commit comments