diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp
index 6db1d2770..17a9a3e3f 100755
--- a/Firmware/Marlin_main.cpp
+++ b/Firmware/Marlin_main.cpp
@@ -6992,14 +6992,14 @@ Sigma_Exit:
### M120 - Enable endstops M120: Enable endstop detection
*/
case 120:
- enable_endstops(false) ;
+ enable_endstops(true) ;
break;
/*!
### M121 - Disable endstops M121: Disable endstop detection
*/
case 121:
- enable_endstops(true) ;
+ enable_endstops(false) ;
break;
/*!