summaryrefslogtreecommitdiff
path: root/drive_entity.lua
diff options
context:
space:
mode:
Diffstat (limited to 'drive_entity.lua')
-rw-r--r--drive_entity.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/drive_entity.lua b/drive_entity.lua
index f26bf11..ecbabdf 100644
--- a/drive_entity.lua
+++ b/drive_entity.lua
@@ -541,9 +541,9 @@ function celevator.drives.entity.moveto(pos,target,inspection)
local apos = tonumber(meta:get_string("apos"))
local vel = tonumber(meta:get_string("vel"))
if vel > 0 then
- if target < apos+(vel*2) then return end
+ if target < apos+(vel*2) and not inspection then return end
elseif vel < 0 then
- if target > apos-(vel*-2) then return end
+ if target > apos-(vel*-2) and not inspection then return end
else
return
end