Changeset - r1882:b657f9bda5ce
[Not reviewed]
master
0 1 0
hackykid - 19 years ago 2005-06-01 10:30:45
hackykid@openttd.org
(svn r2388) - Fix: [realistic accel] Very slow trains no longer get an increase in maximum speed when part of them is in a depot.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
train_cmd.c
Show inline comments
 
@@ -176,7 +176,7 @@ static int GetTrainAcceleration(Vehicle 
 
			max_speed = min(rvi->max_speed, max_speed);
 

	
 
		if (u->u.rail.track == 0x80)
 
			max_speed = 61;
 
			max_speed = min(61, max_speed);
 

	
 
		vmass = rvi->weight;  //[t]
 
		vmass += (_cargoc.weights[u->cargo_type] * u->cargo_count) / 16;
0 comments (0 inline, 0 general)