From 8ae23dd41a29d7a4d59487fcb30baa20781dfc8c Mon Sep 17 00:00:00 2001 From: cheapie Date: Sat, 15 Mar 2025 13:13:05 -0500 Subject: Improve deceleration profile --- drive_entity.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drive_entity.lua b/drive_entity.lua index fbafada..8c1d69a 100644 --- a/drive_entity.lua +++ b/drive_entity.lua @@ -450,8 +450,8 @@ function celevator.drives.entity.step(dtime) apos = math.floor(apos+0.5) minetest.after(0.25,celevator.drives.entity.updatecopformspec,pos) table.remove(entitydrives_running,i) - elseif dremain < 0.2 and not inspection then - vel = 0.2 + elseif dremain < 0.1 and not inspection then + vel = 0.1 elseif dremain < 2*maxvel and dremain < dmoved and not inspection then vel = math.min(dremain,maxvel) if celevator.drives.entity.movementsoundstate[hash] == "fast" or celevator.drives.entity.movementsoundstate[hash] == "accel" then @@ -495,8 +495,8 @@ function celevator.drives.entity.step(dtime) apos = math.floor(apos+0.5) minetest.after(0.25,celevator.drives.entity.updatecopformspec,pos) table.remove(entitydrives_running,i) - elseif dremain < 0.2 and not inspection then - vel = 0.2 + elseif dremain < 0.1 and not inspection then + vel = 0.1 elseif dremain < 2*maxvel and dremain < dmoved and not inspection then vel = math.min(dremain,maxvel) if celevator.drives.entity.movementsoundstate[hash] == "fast" or celevator.drives.entity.movementsoundstate[hash] == "accel" then -- cgit v1.2.3