From 2ada5767df16a5cb614c6b814c06cff6a329e349 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 4 Sep 2021 21:59:45 +0100 Subject: [PATCH] Realistic braking: Increase value of RBC_BRAKE_FORCE_PER_LENGTH --- src/train.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/train.h b/src/train.h index 01c3154aaf..1c181e55e4 100644 --- a/src/train.h +++ b/src/train.h @@ -72,7 +72,7 @@ enum ConsistChangeFlags { DECLARE_ENUM_AS_BIT_SET(ConsistChangeFlags) enum RealisticBrakingConstants { - RBC_BRAKE_FORCE_PER_LENGTH = 1600, ///< Additional force-based brake force per unit of train length + RBC_BRAKE_FORCE_PER_LENGTH = 2400, ///< Additional force-based brake force per unit of train length RBC_BRAKE_POWER_PER_LENGTH = 15000, ///< Additional power-based brake force per unit of train length (excludes maglevs) };