roadveh_cmd.c
changeset 4445 562232eef864
parent 4434 4175805666a5
child 4451 66603f0f732e
--- a/roadveh_cmd.c	Tue Aug 29 19:26:13 2006 +0000
+++ b/roadveh_cmd.c	Tue Aug 29 19:46:31 2006 +0000
@@ -1035,13 +1035,13 @@
 	}
 
 	if (IsTileType(tile, MP_STREET)) {
-		if (GetRoadTileType(tile) == ROAD_TILE_DEPOT && !IsTileOwner(tile, v->owner)) {
-			/* Road depot owned by another player */
+		if (GetRoadTileType(tile) == ROAD_TILE_DEPOT && (!IsTileOwner(tile, v->owner) || GetRoadDepotDirection(tile) == enterdir)) {
+			/* Road depot owned by another player or with the wrong orientation */
 			bitmask = 0;
 		}
 	} else if (IsTileType(tile, MP_STATION) && IsRoadStopTile(tile)) {
-		if (!IsTileOwner(tile, v->owner)) {
-			// different station owner
+		if (!IsTileOwner(tile, v->owner) || GetRoadStopDir(tile) == enterdir) {
+			/* different station owner or wrong orientation */
 			bitmask = 0;
 		} else {
 			/* Our station */