Changeset - r2550:0dd43dba2164
[Not reviewed]
master
0 1 0
tron - 18 years ago 2005-10-23 14:38:09
tron@openttd.org
(svn r3079) Determine the type of the "first arrival" message for road vehicles using the cargo type and not a magic engine number
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
roadveh_cmd.c
Show inline comments
 
@@ -798,7 +798,7 @@ static Vehicle *RoadVehFindCloseTo(Vehic
 

	
 
static void RoadVehArrivesAt(Vehicle *v, Station *st)
 
{
 
	if (v->engine_type < 123) {
 
	if (v->cargo_type == CT_PASSENGERS) {
 
		/* Check if station was ever visited before */
 
		if (!(st->had_vehicle_of_type & HVOT_BUS)) {
 
			uint32 flags;
0 comments (0 inline, 0 general)