diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp
index c99eea355b4..0975e4fafbf 100644
--- a/Marlin/temperature.cpp
+++ b/Marlin/temperature.cpp
@@ -696,7 +696,7 @@ void manage_heater() {
   } // Extruders Loop
 
   #if HAS_AUTO_FAN
-    if (ELAPSED(ms > next_auto_fan_check_ms)) { // only need to check fan state very infrequently
+    if (ELAPSED(ms, next_auto_fan_check_ms)) { // only need to check fan state very infrequently
       checkExtruderAutoFans();
       next_auto_fan_check_ms = ms + 2500UL;
     }