mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 00:03:11 +01:00
Fix a bug that prevents connect footpaths to ride.
Fix a bug that prevents connect footpaths to the ride entrance/exit with multiple stations (Fixes #3100).
This commit is contained in:
@@ -52,8 +52,7 @@ static const uint16 EntranceDirections[] = {
|
|||||||
static int entrance_get_directions(rct_map_element *mapElement)
|
static int entrance_get_directions(rct_map_element *mapElement)
|
||||||
{
|
{
|
||||||
uint8 entranceType = mapElement->properties.entrance.type;
|
uint8 entranceType = mapElement->properties.entrance.type;
|
||||||
uint8 sequence = mapElement->properties.entrance.index & 0x0F;
|
return EntranceDirections[(entranceType * 8)];
|
||||||
return EntranceDirections[(entranceType * 8) + sequence];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool entrance_has_direction(rct_map_element *mapElement, int direction)
|
static bool entrance_has_direction(rct_map_element *mapElement, int direction)
|
||||||
|
|||||||
Reference in New Issue
Block a user