1
0
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:
Gymnasiast
2018-09-15 11:46:03 +02:00
parent 9fb58a3453
commit 75877e82f8

View File

@@ -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)