Allow M600 when dryrun debugging
This commit is contained in:
parent
fe2ea2906f
commit
306c184b1a
2 changed files with 2 additions and 2 deletions
|
|
@ -7267,7 +7267,7 @@ inline void gcode_M503() {
|
|||
*/
|
||||
inline void gcode_M600() {
|
||||
|
||||
if (thermalManager.tooColdToExtrude(active_extruder)) {
|
||||
if (!DEBUGGING(DRYRUN) && thermalManager.tooColdToExtrude(active_extruder)) {
|
||||
SERIAL_ERROR_START;
|
||||
SERIAL_ERRORLNPGM(MSG_TOO_COLD_FOR_M600);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue