From 9e5502afe37cb8556c999faf4e3ec4368f5bca44 Mon Sep 17 00:00:00 2001 From: Richard Jenkins Date: Sat, 6 Jan 2018 23:09:26 +0000 Subject: [PATCH] Enable virtual floor for paths --- src/openrct2/world/footpath.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/openrct2/world/footpath.c b/src/openrct2/world/footpath.c index 28af6bb392..fac5d7dc74 100644 --- a/src/openrct2/world/footpath.c +++ b/src/openrct2/world/footpath.c @@ -743,6 +743,11 @@ money32 footpath_provisional_set(sint32 type, sint32 x, sint32 y, sint32 z, sint } } + if (!scenery_tool_is_active()) + { + map_set_virtual_floor_height(z * 8); + } + return cost; }