Carts: Stronger handbrake

Handbrake was barely noticeable and fairly useless.
Equalisng with brake rail deceleration makes it more intuitive to use
and easier to judge stopping distance.
master
paramat 2016-12-07 03:23:03 +00:00
parent 4a5206e3a7
commit 3e5852993d
1 changed files with 2 additions and 2 deletions

View File

@ -272,9 +272,9 @@ local function rail_on_step(self, dtime)
-- Try to make it similar to the original carts mod
acc = acc + speed_mod
else
-- Handbrake
-- Handbrake or coast
if ctrl and ctrl.down then
acc = acc - 1.6
acc = acc - 3
else
acc = acc - 0.4
end