From 3016701a98cf0d6c935d043f7ffd97e72f5e023b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <5415177+ZehMatt@users.noreply.github.com> Date: Thu, 28 Oct 2021 21:15:24 +0300 Subject: [PATCH] Prevent map_is_location_owned from overwriting the global error message --- src/openrct2/world/Map.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/openrct2/world/Map.cpp b/src/openrct2/world/Map.cpp index 87f6fe8f71..8dd5d2473b 100644 --- a/src/openrct2/world/Map.cpp +++ b/src/openrct2/world/Map.cpp @@ -786,8 +786,6 @@ bool map_is_location_owned(const CoordsXYZ& loc) } } } - - gGameCommandErrorText = STR_LAND_NOT_OWNED_BY_PARK; return false; }