Fix: GetCurveSpeedLimit needs railtype from current tile (#8466)

This commit is contained in:
Andy 2021-01-03 21:19:06 +00:00 committed by GitHub
parent 4ce53cb851
commit 0f91cb0479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -349,8 +349,8 @@ int Train::GetCurveSpeedLimit() const
}
if (max_speed != absolute_max_speed) {
/* Apply the engine's rail type curve speed advantage, if it slowed by curves */
const RailtypeInfo *rti = GetRailTypeInfo(this->railtype);
/* Apply the current railtype's curve speed advantage */
const RailtypeInfo *rti = GetRailTypeInfo(GetRailType(this->tile));
max_speed += (max_speed / 2) * rti->curve_speed;
if (this->tcache.cached_tilt) {