(svn r5607) -Regression [r3597]: Let a road vehicle only overtake if there is no vehicle close except the two involved

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
tron 18 years ago
parent 4ca059b0e2
commit fd0305197e

@ -878,7 +878,7 @@ static void* EnumFindVehToOvertake(Vehicle* v, void* data)
const OvertakeData* od = data;
return
v->tile == od->tile && v->type == VEH_Road && v == od->u && v == od->v ?
v->tile == od->tile && v->type == VEH_Road && v != od->u && v != od->v ?
v : NULL;
}

Loading…
Cancel
Save