<font face="Arial, Verdana">I guess you mean</font>
<font face="Arial, Verdana">
</font>
<font face="Arial, Verdana">#define DISABLE_Z false</font>
/* If you want to keep z motor running on stepper timeout, remove comments below.
<font face="Arial, Verdana"> This may be useful if your z bed moves when motors are disabled. Will still</font>
<font face="Arial, Verdana"> turn z off when heaters get also disabled. </font>
<font face="Arial, Verdana">*/</font>
<font face="Arial, Verdana">#define PREVENT_Z_DISABLE_ON_STEPPER_TIMEOUT</font>
<font face="Arial, Verdana">
</font>
<font face="Arial, Verdana">that would always keep z axis on. Does not work if you use motorized bedleveling, therefor go to BedLeveling.cpp function</font>
<font face="Arial, Verdana">void correctAutolevel(GCode *code,Plane &plane) {
</font>
<font face="Arial, Verdana">and comment near function end</font>
<p class="p1"> motor2->disable();</p>
<p class="p2"> motor3->disable(); // now bed is even</p><p class="p2">Let me know if that was the problem, then I might need to think about a option for this. My printer has extra motors and steppers burn out if I don't disable them. So that might need an extra option.</p>