From 4976c5b2276a3cf250b170ce964e3d616e930c4a Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Mon, 29 Jun 2026 16:19:31 -0500 Subject: [PATCH] fix PollVelocity empty array check --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 9822d7b..89e1a5f 100644 --- a/main.lua +++ b/main.lua @@ -487,7 +487,7 @@ function PollVelocity() -- Velocity Sensors VelocityVectors = {} - if velSensors[1] == nil then -- verify array is not empty + if velSensors[1] ~= nil then -- verify array is not empty SensorData.Velocity = {}