🎨 Clean up some checks & includes

This commit is contained in:
Scott Lahteine 2024-01-04 13:01:45 -06:00
parent 991f433ac1
commit 52693f72af
20 changed files with 65 additions and 110 deletions

View file

@ -71,8 +71,8 @@ void GcodeSuite::T(const int8_t tool_index) {
tool_change(tool_index
#if HAS_MULTI_EXTRUDER
, TERN(PARKING_EXTRUDER, false, tool_index == active_extruder) // For PARKING_EXTRUDER motion is decided in tool_change()
|| parser.boolval('S')
, parser.boolval('S')
|| TERN(PARKING_EXTRUDER, false, tool_index == active_extruder) // For PARKING_EXTRUDER motion is decided in tool_change()
#endif
);
}