diff --git a/Marlin/src/gcode/queue.cpp b/Marlin/src/gcode/queue.cpp index c951fc6333649..1973d3be45588 100644 --- a/Marlin/src/gcode/queue.cpp +++ b/Marlin/src/gcode/queue.cpp @@ -472,7 +472,7 @@ void GCodeQueue::get_serial_commands() { // The line number must be in the correct sequence. if (gcode_N != serial.last_N + 1 && !M110) { // A request-for-resend line was already in transit so we got two - oops! - if (WITHIN(gcode_N, serial.last_N - 1, serial.last_N)) continue; + //if (WITHIN(gcode_N, serial.last_N - 1, serial.last_N)) continue; // A corrupted line or too high, indicating a lost line gcode_line_error(F(STR_ERR_LINE_NO), p); break;