Fix tool-change servo index for E2 and up (#20060)

This commit is contained in:
Jason Smith 2020-11-08 00:15:30 -08:00 committed by Scott Lahteine
parent 367e717aeb
commit 841f0d5778

View File

@ -123,7 +123,7 @@
if (e < EXTRUDERS - 1) if (e < EXTRUDERS - 1)
#endif #endif
{ {
MOVE_SERVO(_SERVO_NR(e), servo_angles[_SERVO_NR(e)][e]); MOVE_SERVO(_SERVO_NR(e), servo_angles[_SERVO_NR(e)][e & 1]);
safe_delay(500); safe_delay(500);
} }
} }