1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix Junior RC data files to disable steep inclines, fixes #5902

This commit is contained in:
Gymnasiast
2017-07-15 10:52:21 +02:00
parent ff51d4aec6
commit 34073e10ae

View File

@@ -496,4 +496,11 @@ void RideObject::PerformFixes()
{
_legacyType.cars_per_flat_ride = 0xFF;
}
else if (String::Equals(identifier, "ZLDB ") ||
String::Equals(identifier, "ZLOG ") ||
String::Equals(identifier, "ZPANDA ") ||
String::Equals(identifier, "WHICGRUB"))
{
_legacyType.enabledTrackPieces &= ~(1ULL << TRACK_SLOPE_STEEP);
}
}