From 3e5852993d571b5aefa405eb4c54b28942cba91f Mon Sep 17 00:00:00 2001 From: paramat Date: Wed, 7 Dec 2016 03:23:03 +0000 Subject: [PATCH] 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. --- mods/carts/cart_entity.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/carts/cart_entity.lua b/mods/carts/cart_entity.lua index a0b0e3fa..e8707fb4 100644 --- a/mods/carts/cart_entity.lua +++ b/mods/carts/cart_entity.lua @@ -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