mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Fix access to path element
This commit is contained in:
@@ -1021,7 +1021,7 @@ void rct_peep::UpdateFalling()
|
||||
// If a path check if we are on it
|
||||
if (tile_element->GetType() == TILE_ELEMENT_TYPE_PATH)
|
||||
{
|
||||
int32_t height = map_height_from_slope(x, y, tile_element->AsSurface()->GetSlope())
|
||||
int32_t height = map_height_from_slope(x, y, tile_element->properties.path.type)
|
||||
+ tile_element->base_height * 8;
|
||||
|
||||
if (height < z - 1 || height > z + 4)
|
||||
|
||||
Reference in New Issue
Block a user