Skip to content
Snippets Groups Projects
Commit 87c4e06c authored by Erik van der Zalm's avatar Erik van der Zalm
Browse files

Corrected active_extruder when autotemp is used.

parent 7b1e295f
Branches
Tags
No related merge requests found
......@@ -153,8 +153,8 @@ FORCE_INLINE void autotempShutdown(){
if(autotemp_enabled)
{
autotemp_enabled=false;
if(degTargetHotend(ACTIVE_EXTRUDER)>autotemp_min)
setTargetHotend(0,ACTIVE_EXTRUDER);
if(degTargetHotend(active_extruder)>autotemp_min)
setTargetHotend(0,active_extruder);
}
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment