(svn r2475) -Fix: [ 1214982 & 1217473 ] realistic acceleration problem. (glx)

This commit is contained in:
celestar 2005-06-23 06:19:06 +00:00
parent 7b0c767238
commit 56f3bc9e69
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ static int GetTrainAcceleration(Vehicle *v, bool mode)
}
} else {
//"kickoff" acceleration
force = resistance * 10;
force = (mass * 8) + resistance;
}
if (force <= 0) force = 10000;