From 0a819d3d13e116feb95726763df011446c09ae18 Mon Sep 17 00:00:00 2001 From: supermerill Date: Mon, 30 Nov 2020 17:23:57 +0100 Subject: [PATCH] #736 reprap mm : only set standby in the standby code. --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 99101d73ee8..6727498874e 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -1088,7 +1088,7 @@ static void init_multiextruders(FILE *file, Print &print, GCodeWriter & writer, int standby_temp = int(print.config().temperature.get_at(tool_id)); if(print.config().ooze_prevention.value) standby_temp += print.config().standby_temperature_delta.value; - fprintf(file, "G10 P%d R%d S%d ; sets the standby temperature\n", + fprintf(file, "G10 P%d R%d ; sets the standby temperature\n", tool_id, standby_temp, int(print.config().temperature.get_at(tool_id)));