(svn r5607) -Regression [r3597]: Let a road vehicle only overtake if there is no vehicle close except the two involved
authortron
Tue, 25 Jul 2006 19:18:31 +0000
changeset 4170 1e4a024fd08b
parent 4169 b775328748af
child 4171 3fadda3afe70
(svn r5607) -Regression [r3597]: Let a road vehicle only overtake if there is no vehicle close except the two involved
roadveh_cmd.c
--- a/roadveh_cmd.c	Tue Jul 25 18:32:34 2006 +0000
+++ b/roadveh_cmd.c	Tue Jul 25 19:18:31 2006 +0000
@@ -878,7 +878,7 @@
 	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;
 }