1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00
This commit is contained in:
zaxcav
2016-10-04 15:50:23 +02:00
parent 5217221067
commit 5fdfb397d2

View File

@@ -8743,8 +8743,8 @@ bool ride_has_adjacent_station(rct_ride *ride)
}
/* Check the first side of the station */
int direction = (stationElement->type + 1) & 3;
uint adjStationX = stationX + TileDirectionDelta[direction].x;
uint adjStationY = stationY + TileDirectionDelta[direction].y;
int adjStationX = stationX + TileDirectionDelta[direction].x;
int adjStationY = stationY + TileDirectionDelta[direction].y;
if (check_adjacent_station(adjStationX, adjStationY, stationZ)) {
found = true;
break;