(svn r20298) -Fix: GetInitialMaxSpeed did not return the correct value for road vehicles.

pull/155/head
terkhen 14 years ago
parent da80ebb00d
commit 094841cba3

@ -262,7 +262,8 @@ protected: // These functions should not be called outside acceleration code.
*/ */
FORCEINLINE uint16 GetInitialMaxSpeed() const FORCEINLINE uint16 GetInitialMaxSpeed() const
{ {
return this->max_speed; /* Road vehicles use a *2 conversion factor. */
return this->max_speed / 2;
} }
/** /**

Loading…
Cancel
Save