Merge pull request #4163 from gudnimg/tx-fix

Fix issue where Tx gcode doesnt reset custom_message_type
This commit is contained in:
Alex Voinea 2023-04-23 12:15:11 +02:00 committed by GitHub
commit eb8ac250cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -401,8 +401,7 @@ bool MMU2::tool_change(char code, uint8_t slot) {
case 'x': {
thermal_setExtrudeMintemp(0); // Allow cold extrusion since Tx only loads to the gears not nozzle
planner_synchronize();
ToolChangeCommon(slot); // the only difference was manage_response(false, false), but probably good enough
tool_change(slot);
thermal_setExtrudeMintemp(EXTRUDE_MINTEMP);
} break;