diff --git a/src/libslic3r/GCode/WipeTower.cpp b/src/libslic3r/GCode/WipeTower.cpp index bf503100bbc..d59727052d6 100644 --- a/src/libslic3r/GCode/WipeTower.cpp +++ b/src/libslic3r/GCode/WipeTower.cpp @@ -96,10 +96,7 @@ class WipeTowerWriter && m_tool_name[this->m_current_tool][0] != static_cast(('0' + this->m_current_tool))) { m_gcode += "SET_PRESSURE_ADVANCE ADVANCE=0 EXTRUDER=" + m_tool_name[this->m_current_tool] + "\n"; } else { - m_gcode += "SET_PRESSURE_ADVANCE ADVANCE=0 EXTRUDER=extruder"; - if (this->m_current_tool > 0) - m_gcode += std::to_string(this->m_current_tool); - m_gcode += "\n"; + m_gcode += "SET_PRESSURE_ADVANCE ADVANCE=0\n"; } } else { m_gcode += std::string("M900 K0\n");