From c3e79b19483e8c0651b73a2ce711d0bf4e981de0 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 6 Jan 2018 21:46:18 +0100 Subject: [PATCH] Fix Amity Airport coordinate adjustment --- src/openrct2/rct2/S6Importer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/rct2/S6Importer.cpp b/src/openrct2/rct2/S6Importer.cpp index 50f26c7033..2eb87f5eca 100644 --- a/src/openrct2/rct2/S6Importer.cpp +++ b/src/openrct2/rct2/S6Importer.cpp @@ -765,7 +765,7 @@ public: { // Amity Airfield has peeps entering from the corner of the tile, instead of the middle. if (String::Equals(_s6.scenario_filename, "Amity Airfield.SC6")) - _s6.peep_spawns[0].y += 16; + _s6.peep_spawns[0].y = 1296; for (size_t i = 0; i < RCT12_MAX_PEEP_SPAWNS; i++)