summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/train_cmd.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp
index 6aa7eda90..59cab1b38 100644
--- a/src/train_cmd.cpp
+++ b/src/train_cmd.cpp
@@ -502,11 +502,9 @@ static int GetTrainAcceleration(Vehicle *v, bool mode)
resistance += incl;
resistance *= 4; //[N]
- /* Due to the mph to m/s conversion below, at speeds below 3 mph the force is
- * actually double the train's power */
const int max_te = v->u.rail.cached_max_te; // [N]
int force;
- if (speed > 2) {
+ if (speed > 0) {
switch (v->u.rail.railtype) {
case RAILTYPE_RAIL:
case RAILTYPE_ELECTRIC: