1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Mark being inside a piece of sloped terrain as being occupied

This commit is contained in:
Jeroen D Stout
2017-10-03 23:11:59 +02:00
committed by Aaron van Geffen
parent d00a282c1c
commit b9faed7437

View File

@@ -134,6 +134,7 @@ void virtual_floor_paint(paint_session * session)
tileElement->properties.surface.slope != 0)
{
weAreBelowGround = true;
weAreOccupied = true;
}
continue;
}
@@ -212,6 +213,7 @@ void virtual_floor_paint(paint_session * session)
tileElement->properties.surface.slope != 0)
{
theyAreBelowGround = true;
theyAreOccupied = true;
}
continue;
}