Skip to content
Snippets Groups Projects
Commit 3e585299 authored by paramat's avatar paramat
Browse files

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.
parent 4a5206e3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment