Changeset - r1969:287ecec5b3b7
[Not reviewed]
master
0 1 0
celestar - 19 years ago 2005-06-23 06:19:06
celestar@openttd.org
(svn r2475) -Fix: [ 1214982 & 1217473 ] realistic acceleration problem. (glx)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
train_cmd.c
Show inline comments
 
@@ -312,7 +312,7 @@ static int GetTrainAcceleration(Vehicle 
 
		}
 
	} else {
 
		//"kickoff" acceleration
 
		force = resistance * 10;
 
		force = (mass * 8) + resistance;
 
	}
 

	
 
	if (force <= 0) force = 10000;
0 comments (0 inline, 0 general)