mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-09-01 10:59:12 +00:00
(svn r8609) -Fix: a road vehicle that is very close after another (slower) road vehicle gets its speed reset to 0 when entering a tunnel, which causes a traffic jam outside of the tunnel.
This commit is contained in:
@@ -1330,8 +1330,9 @@ static void RoadVehController(Vehicle *v)
|
||||
|
||||
GetNewVehiclePos(v, &gp);
|
||||
|
||||
if (RoadVehFindCloseTo(v, gp.x, gp.y, v->direction) != NULL) {
|
||||
v->cur_speed = 0;
|
||||
const Vehicle *u = RoadVehFindCloseTo(v, gp.x, gp.y, v->direction);
|
||||
if (u != NULL && u->cur_speed < v->cur_speed) {
|
||||
v->cur_speed = u->cur_speed;
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user