summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2025-03-15 13:13:05 -0500
committercheapie <no-email-for-you@example.com>2025-03-15 13:13:05 -0500
commit8ae23dd41a29d7a4d59487fcb30baa20781dfc8c (patch)
tree4c68c66280d534987fa6304bdbdd53e63556c7c7
parentfeea683ef8d8a7a4c8be692e7ad1749904b2921a (diff)
downloadcelevator-8ae23dd41a29d7a4d59487fcb30baa20781dfc8c.tar
celevator-8ae23dd41a29d7a4d59487fcb30baa20781dfc8c.tar.gz
celevator-8ae23dd41a29d7a4d59487fcb30baa20781dfc8c.tar.bz2
celevator-8ae23dd41a29d7a4d59487fcb30baa20781dfc8c.tar.xz
celevator-8ae23dd41a29d7a4d59487fcb30baa20781dfc8c.zip
Improve deceleration profile
-rw-r--r--drive_entity.lua8
1 files 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