From 9dfe5af851d016a1a67f2df060e5a4111ad8653f Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Thu, 26 Mar 2020 06:53:49 +0100 Subject: [PATCH] Add remark about track designs with 5 stations (#11051) --- src/openrct2/ride/Track.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openrct2/ride/Track.cpp b/src/openrct2/ride/Track.cpp index 8eb84daa6e..06a4df5d12 100644 --- a/src/openrct2/ride/Track.cpp +++ b/src/openrct2/ride/Track.cpp @@ -717,6 +717,7 @@ bool track_add_station_element(CoordsXYZD loc, ride_id_t rideIndex, int32_t flag // When attempting to place a track design, it sometimes happens that the front and back of station 0 are built, // but the middle is not. Allow this, so the track place function can actually finish building all 4 stations. + // This _might_ cause issues if the track designs is bugged and actually has 5. if (stationBackLoc == stationFrontLoc && ride->num_stations >= MAX_STATIONS && !fromTrackDesign) { gGameCommandErrorText = STR_NO_MORE_STATIONS_ALLOWED_ON_THIS_RIDE;