Changeset - r17199:79a43b011486
[Not reviewed]
master
0 1 0
smatz - 14 years ago 2011-02-02 22:40:04
smatz@openttd.org
(svn r21948) -Fix: road vehicle was moved under the bridge when it was destroyed by an UFO while on a bridge
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/roadveh_cmd.cpp
Show inline comments
 
@@ -437,7 +437,7 @@ static void RoadVehSetRandomDirection(Ro
 
		uint32 r = Random();
 

	
 
		v->direction = ChangeDir(v->direction, delta[r & 3]);
 
		v->UpdateInclination(false, true);
 
		v->UpdateViewport(true, true);
 
	} while ((v = v->Next()) != NULL);
 
}
 

	
0 comments (0 inline, 0 general)