Fix issue where tool_change_extruder is not reset after retry

This commit is contained in:
Guðni Már Gilbert 2022-11-19 16:04:53 +00:00 committed by DRracer
parent 541cd3ae94
commit f1ed2fc5c7
1 changed files with 1 additions and 1 deletions

View File

@ -340,9 +340,9 @@ bool MMU2::VerifyFilamentEnteredPTFE()
}
void MMU2::ToolChangeCommon(uint8_t slot){
tool_change_extruder = slot;
for(;;) { // while not successfully fed into extruder's PTFE tube
for(;;) {
tool_change_extruder = slot;
logic.ToolChange(slot); // let the MMU pull the filament out and push a new one in
if( manage_response(true, true) )
break;