diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index ceba730363..31ce590119 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -2988,12 +2988,8 @@ void Temperature::tick() { next_temp_report_ms = millis() + 1000UL * auto_report_temp_interval; PORT_REDIRECT(SERIAL_BOTH); print_heater_states(active_extruder); - if (gcode.autoreport.position) { - SERIAL_CHAR(' '); - report_current_position_projected(); - } - else - SERIAL_EOL(); + SERIAL_EOL(); + if(gcode.autoreport_position) report_current_position_projected(); } }