From 0a409b65d03b71cab56fa82888ae186830274714 Mon Sep 17 00:00:00 2001 From: lawgicau Date: Mon, 17 Aug 2020 13:18:21 +1000 Subject: [PATCH] Fix acceleration not waiting for bed temp. --- js/gcodeprocessing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gcodeprocessing.js b/js/gcodeprocessing.js index 53c27cb..e863cd8 100644 --- a/js/gcodeprocessing.js +++ b/js/gcodeprocessing.js @@ -438,7 +438,7 @@ function processAcceleration(){ acceleration = acceleration.replace(/M106 S255/, ";M106 S255"); } acceleration = acceleration.replace(/M140 S60/g, "M140 S"+bedTemp); - acceleration = acceleration.replace(/M190 S60/g, "M140 S"+bedTemp); + acceleration = acceleration.replace(/M190 S60/g, "M190 S"+bedTemp); if(abl != 4){ acceleration = acceleration.replace(/M104 S210/g, "M104 S"+hotendTemp); acceleration = acceleration.replace(/M109 S210/g, "M109 S"+hotendTemp);