changeset 1969:aa42cc2e3527 draft

(svn r2475) -Fix: [ 1214982 & 1217473 ] realistic acceleration problem. (glx)
author celestar <celestar@openttd.org>
date Thu, 23 Jun 2005 06:19:06 +0000
parents 612b06511120
children 23d3be7d6cd2
files train_cmd.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -312,7 +312,7 @@
 		}
 	} else {
 		//"kickoff" acceleration
-		force = resistance * 10;
+		force = (mass * 8) + resistance;
 	}
 
 	if (force <= 0) force = 10000;