#7050 - GCodeProcessor: Fixed processing of gcode lines M109
This commit is contained in:
parent
44db8f58c7
commit
0b78e009b4
1 changed files with 2 additions and 0 deletions
|
@ -2861,6 +2861,8 @@ void GCodeProcessor::process_M109(const GCodeReader::GCodeLine& line)
|
|||
else
|
||||
m_extruder_temps[m_extruder_id] = new_temp;
|
||||
}
|
||||
else if (line.has_value('S', new_temp))
|
||||
m_extruder_temps[m_extruder_id] = new_temp;
|
||||
}
|
||||
|
||||
void GCodeProcessor::process_M132(const GCodeReader::GCodeLine& line)
|
||||
|
|
Loading…
Reference in a new issue