From 1dd696d4534b5654794c899c721e9bf9894e9dae Mon Sep 17 00:00:00 2001 From: Ted John Date: Sun, 26 May 2019 12:00:46 +0100 Subject: [PATCH] Do not clear construction / peeps when querying ride entrance / exit --- src/openrct2/actions/RideEntranceExitPlaceAction.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/openrct2/actions/RideEntranceExitPlaceAction.hpp b/src/openrct2/actions/RideEntranceExitPlaceAction.hpp index 83e77d84e1..97bdb28ac8 100644 --- a/src/openrct2/actions/RideEntranceExitPlaceAction.hpp +++ b/src/openrct2/actions/RideEntranceExitPlaceAction.hpp @@ -89,9 +89,6 @@ public: return MakeResult(GA_ERROR::DISALLOWED, errorTitle, STR_NOT_ALLOWED_TO_MODIFY_STATION); } - ride_clear_for_construction(ride); - ride_remove_peeps(ride); - const auto location = _isExit ? ride_get_exit_location(ride, _stationNum) : ride_get_entrance_location(ride, _stationNum);