diff --git a/modules/path/formats/g-code b/modules/path/formats/g-code
index 545766a40028bd583cfd1ec142e395c765c776b3..70d170a36160548b20b29e68afc876089027fe26 100644
--- a/modules/path/formats/g-code
+++ b/modules/path/formats/g-code
@@ -37,8 +37,8 @@ var name = 'path to G-code'
 // initialization
 //
 var init = function() {
-   mod.cutspeed.value = '2.5'
-   mod.plungespeed.value = '2.5'
+   mod.cutspeed.value = '1'
+   mod.plungespeed.value = '1'
    mod.jogheight.value = '2'
    mod.spindlespeed.value = '10000'
    mod.tool.value = '1'
@@ -224,7 +224,7 @@ function make_path() {
    str += "G80\n" // cancel canned cycles
    str += "G90\n" // absolute coordinates
    str += "G94\n" // feed/minute units
-   str += "T"+tool+"M06\n" // tool selection, tool change
+   //str += "T"+tool+"M06\n" // tool selection, tool change // some interpreters have trouble with this
    str += "F"+cut_speed.toFixed(4)+"\n" // feed rate
    str += "S"+spindle_speed+"\n" // spindle speed
    if (mod.coolanton.checked)